Started cutscene system

This commit is contained in:
2025-01-05 15:30:00 -06:00
parent e74878eb80
commit 0554f5719d
11 changed files with 135 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
class_name CutsceneEvent
var started:bool = false;
func _init() -> void:
pass
func start() -> void:
pass
func update(delta:float) -> void:
pass
func isDone() -> bool:
return true
func end() -> void:
pass