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.
 
 

15 lines
276 B

  1. extends Node
  2. class_name BaseLevel
  3. signal request_new_scene
  4. onready var yarnRunner := YarnRunner.new()
  5. func _enter_tree():
  6. Controller.player_input_enabled = true
  7. func _exit_tree():
  8. Controller.player_input_enabled = false
  9. Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)