plugin.gd 343 B

123456789101112131415161718192021222324
  1. # meta-description: Basic plugin template
  2. @tool
  3. extends _BASE_
  4. func _enable_plugin() -> void:
  5. # Add autoloads here.
  6. pass
  7. func _disable_plugin() -> void:
  8. # Remove autoloads here.
  9. pass
  10. func _enter_tree() -> void:
  11. # Initialization of the plugin goes here.
  12. pass
  13. func _exit_tree() -> void:
  14. # Clean-up of the plugin goes here.
  15. pass