18 lines
281 B
GDScript
18 lines
281 B
GDScript
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.
|