fix method name in call
This commit is contained in:
parent
cd9e52cf9b
commit
969d264b6e
1 changed files with 2 additions and 2 deletions
|
|
@ -22,11 +22,11 @@ func _unhandled_input(event: InputEvent) -> void:
|
|||
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
state.update(delta)
|
||||
state.state_update(delta)
|
||||
|
||||
|
||||
func _physics_process(delta: float) -> void:
|
||||
state.physics_update(delta)
|
||||
state.state_physics_update(delta)
|
||||
|
||||
|
||||
## Called when initial state is not specified.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue