diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-06-16 17:21:47 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-06-16 19:29:59 +0200 |
commit | 525b5e0e16372923a571f4c024f53398798c2e95 (patch) | |
tree | a4ca7aaf6378e8b3f1c865e54ccb6044c9717bb5 /modules/mono/editor/script_templates | |
parent | 639d72735c2e9bfff013029e3c797a2102797e82 (diff) |
Fix EditorScenePostImport templates for C#
Diffstat (limited to 'modules/mono/editor/script_templates')
-rw-r--r-- | modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs | 8 | ||||
-rw-r--r-- | modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs | 4 |
2 files changed, 5 insertions, 7 deletions
diff --git a/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs b/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs index 0690205d01..9e1b7ef580 100644 --- a/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs +++ b/modules/mono/editor/script_templates/EditorScenePostImport/basic_import_script.cs @@ -7,12 +7,10 @@ using System; [Tool] public partial class _CLASS_ : _BASE_ { - public override Object _PostImport(Node scene) + public override Godot.Object _PostImport(Node scene) { - // Modify the contents of the scene upon import. For example, setting up LODs: -// scene.GetNode<MeshInstance3D>("HighPolyMesh").DrawDistanceEnd = 5.0 -// scene.GetNode<MeshInstance3D>("LowPolyMesh").DrawDistanceBegin = 5.0 - return scene // Return the modified root node when you're done. + // Modify the contents of the scene upon import. + 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 index 4e2d9b7088..bf2c9434e4 100644 --- a/modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs +++ b/modules/mono/editor/script_templates/EditorScenePostImport/no_comments.cs @@ -7,9 +7,9 @@ using System; [Tool] public partial class _CLASS_ : _BASE_ { - public override Object _PostImport(Node scene) + public override Godot.Object _PostImport(Node scene) { - return scene + return scene; } } #endif |