18 lines
281 B
GDScript3
18 lines
281 B
GDScript3
|
extends NinePatchRect
|
||
|
|
||
|
var need_save:bool=true
|
||
|
|
||
|
func _ready() -> void:
|
||
|
if need_save:
|
||
|
$TextureRect3.show()
|
||
|
else:
|
||
|
$TextureRect3.hide()
|
||
|
|
||
|
|
||
|
func _on_save_pressed() -> void:
|
||
|
pass # Replace with function body.
|
||
|
|
||
|
|
||
|
func _on_load_pressed() -> void:
|
||
|
pass # Replace with function body.
|