You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
184 B

  1. extends Node
  2. func _enter_tree():
  3. Controller.player_input_enabled = true
  4. func _exit_tree():
  5. Controller.player_input_enabled = false
  6. Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)