diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2025-12-03 15:33:47 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2025-12-03 15:33:47 +0200 |
| commit | 992e27742fc996bd428b04201f7548533761cfab (patch) | |
| tree | e4afff26ac38a12967cf588f0a68ac608a8e1782 /player.gd | |
| parent | ac4b7f690ab70185349905baf8c8557dfc8e57ae (diff) | |
Open door with a cinematic
Diffstat (limited to 'player.gd')
| -rw-r--r-- | player.gd | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -41,6 +41,9 @@ func _process(delta: float) -> void: func _physics_process(delta: float): state._handle_physics(delta) +func request_state_init(): + state = PlayerStateInit.new(self) + func request_state_normal(): state = PlayerStateNormal.new(self) |
