Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

base_level.gd 206 B

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