TreeNotifier.gd 189 B

1234567891011121314151617
  1. extends Node
  2. func _init():
  3. print(self, "_init")
  4. func _ready():
  5. print(self, "_ready")
  6. func _enter_tree():
  7. print(self, "_enter_tree")
  8. func _exit_tree():
  9. print(self, "_exit_tree")