Disable mouse controls when the game window is embedded in the editor
This commit is contained in:
parent
e8fc5b600c
commit
0513c3a3a6
|
@ -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 /
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue