plugin.cs 349 B

1234567891011121314151617181920
  1. // meta-description: Basic plugin template
  2. #if TOOLS
  3. using _BINDINGS_NAMESPACE_;
  4. using System;
  5. [Tool]
  6. public partial class _CLASS_ : _BASE_
  7. {
  8. public override void _EnterTree()
  9. {
  10. // Initialization of the plugin goes here.
  11. }
  12. public override void _ExitTree()
  13. {
  14. // Clean-up of the plugin goes here.
  15. }
  16. }
  17. #endif