concurrent

This commit is contained in:
2025-01-05 16:08:11 -06:00
parent 0554f5719d
commit 9dce4bf2c7
4 changed files with 84 additions and 4 deletions

View File

@@ -2,8 +2,9 @@ class_name CutsceneWaitEvent extends "res://scripts/Cutscene/CutsceneEvent.gd"
var wait:float = 0.0
func _init(wait:float) -> void:
self.wait = wait
func _init(time:float) -> void:
super._init()
self.wait = time
func update(delta:float) -> void:
self.wait -= delta