This commit is contained in:
2024-02-27 23:21:44 +01:00
parent ba37eca0c9
commit bfec08ff02
38 changed files with 89 additions and 92 deletions

View File

@ -14,11 +14,11 @@ func _ready():
get_tree().process_frame.connect(callback.bind("process_frame"))
get_tree().physics_frame.connect(callback.bind("physics_frame"))
func _process(_delta):
func _process(_delta: float):
callback("_process")
queue_free()
func _physics_process(_delta):
func _physics_process(_delta: float):
callback("_physics_process")
func _notification(what):