Disable mouse controls when the game window is embedded in the editor

This commit is contained in:
blujai831 2025-03-29 11:30:52 -07:00
parent e8fc5b600c
commit 0513c3a3a6
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
2 changed files with 2 additions and 3 deletions

View File

@ -1321,7 +1321,6 @@ func _on_throw_state_tick(_delta: float) -> void:
if _state_animation_done():
if _carrying:
_put_down_without_animation()
_carrying = null
force_change_state(&'run')
elif _carrying && (
_anim_player.current_animation_position /

View File

@ -29,13 +29,13 @@ func _ready() -> void:
snap_to_target()
func _update_mouse_mode() -> void:
if player_control:
if player_control && !Engine.is_embedded_in_editor():
Input.mouse_mode = Input.MOUSE_MODE_CAPTURED
else:
Input.mouse_mode = Input.MOUSE_MODE_VISIBLE
func _unhandled_input(event: InputEvent) -> void:
if !player_control: return
if !player_control || Engine.is_embedded_in_editor(): return
var move_event := event as InputEventMouseMotion
var button_event := event as InputEventMouseButton
if move_event: