From 912d8e23ca4d01e242eda386e420175329113d5b Mon Sep 17 00:00:00 2001 From: Jonathan Nicholl Date: Sat, 28 May 2022 00:09:41 -0400 Subject: Add script templates for EditorScenePostImport --- .../EditorScenePostImport/basic_import_script.cs | 18 ++++++++++++++++++ .../EditorScenePostImport/no_comments.cs | 15 +++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs create mode 100644 modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs (limited to 'modules/mono') diff --git a/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs b/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs new file mode 100644 index 0000000000..0690205d01 --- /dev/null +++ b/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs @@ -0,0 +1,18 @@ +// meta-description: Basic import script template + +#if TOOLS +using _BINDINGS_NAMESPACE_; +using System; + +[Tool] +public partial class _CLASS_ : _BASE_ +{ + public override Object _PostImport(Node scene) + { + // Modify the contents of the scene upon import. For example, setting up LODs: +// scene.GetNode("HighPolyMesh").DrawDistanceEnd = 5.0 +// scene.GetNode("LowPolyMesh").DrawDistanceBegin = 5.0 + return scene // Return the modified root node when you're done. + } +} +#endif diff --git a/modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs b/modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs new file mode 100644 index 0000000000..4e2d9b7088 --- /dev/null +++ b/modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs @@ -0,0 +1,15 @@ +// meta-description: Basic import script template (no comments) + +#if TOOLS +using _BINDINGS_NAMESPACE_; +using System; + +[Tool] +public partial class _CLASS_ : _BASE_ +{ + public override Object _PostImport(Node scene) + { + return scene + } +} +#endif -- cgit v1.2.3