cutscene progress.

This commit is contained in:
2025-08-01 16:06:32 -07:00
parent 44d3f10875
commit 90be9ae6b3
34 changed files with 209 additions and 281 deletions

3
addons/cutscene_editor/editor/nodes/BaseGraphNode.gd Executable file → Normal file
View File

@@ -21,6 +21,7 @@ enum NodeState {
# Properties
var node_type: String = "base"
var node_id: String
var action_parameters: Dictionary = {} # Stores parameter values
var current_state: int = NodeState.IDLE
var error_message: String = ""
@@ -282,3 +283,5 @@ func _clear_parameter_fields() -> void:
editor.queue_free()
property_editors.clear()
func _parameters_to_view() -> void:
pass