diff --git a/src/base-environments/youth_room/room_handle.gd b/src/base-environments/youth_room/room_handle.gd index d70ef8e..c55d4fa 100644 --- a/src/base-environments/youth_room/room_handle.gd +++ b/src/base-environments/youth_room/room_handle.gd @@ -28,7 +28,7 @@ func _process(delta): func start(): $light_animation.play("light_up") $AudioPlayer.play("intro") - State.assign_focus_to($PlayerController) + State.pass_focus_to($PlayerController) current_mode = Modes.WALKING func _update_scene(new_mode) -> int: @@ -37,7 +37,6 @@ func _update_scene(new_mode) -> int: elif new_mode == Modes.FREEZE: emit_signal("freeze") - return new_mode func _unhandled_input(event):