|
|
@ -7,7 +7,7 @@ |
|
|
|
extends Node |
|
|
|
|
|
|
|
|
|
|
|
signal apply_load_complete |
|
|
|
signal apply_complete |
|
|
|
signal apply_save ## Apply the loaded data to the tree. Note: This should happen AFTER load_save() |
|
|
|
signal create_auto_save |
|
|
|
signal create_save(save_name: String) |
|
|
@ -186,7 +186,7 @@ func _on_apply_save() -> void: |
|
|
|
if resource is Node3DDataResource: |
|
|
|
(resource as Node3DDataResource)._load_data(root_node) |
|
|
|
|
|
|
|
apply_load_complete.emit() |
|
|
|
apply_complete.emit() |
|
|
|
|
|
|
|
## Delete both the save file and the related screenshot |
|
|
|
func _on_delete_save(filename: String) -> void: |
|
|
|