plugin.gd 215 B

123456789101112131415
  1. # meta-description: Basic plugin template
  2. @tool
  3. extends _BASE_
  4. func _enter_tree() -> void:
  5. # Initialization of the plugin goes here.
  6. pass
  7. func _exit_tree() -> void:
  8. # Clean-up of the plugin goes here.
  9. pass