diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-11 12:24:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 12:24:48 +0100 |
commit | dca3ce441aac377dd23c6d45a00574fb731c9b35 (patch) | |
tree | 22355cb5f207a4548b074117e2c602b8592b8ead | |
parent | 4c528e76e7886613ac99ade66b325ede072ee691 (diff) | |
parent | 9676650f2f7943ebbf9363fa65e47be62fb22164 (diff) |
Merge pull request #45846 from rcorre/importplugin_doc
Improve EditorImportPlugin docs.
-rw-r--r-- | doc/classes/EditorImportPlugin.xml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/doc/classes/EditorImportPlugin.xml b/doc/classes/EditorImportPlugin.xml index e5401134bf..aa64ab4043 100644 --- a/doc/classes/EditorImportPlugin.xml +++ b/doc/classes/EditorImportPlugin.xml @@ -16,7 +16,7 @@ return "my.special.plugin" func get_visible_name(): - return "Special Mesh Importer" + return "Special Mesh" func get_recognized_extensions(): return ["special", "spec"] @@ -44,8 +44,7 @@ # Fill the Mesh with data read in "file", left as an exercise to the reader. var filename = save_path + "." + get_save_extension() - ResourceSaver.save(filename, mesh) - return OK + return ResourceSaver.save(filename, mesh) [/gdscript] [csharp] using Godot; @@ -60,7 +59,7 @@ public override String GetVisibleName() { - return "Special Mesh Importer"; + return "Special Mesh"; } public override Godot.Collections.Array GetRecognizedExtensions() @@ -104,8 +103,7 @@ var mesh = new ArrayMesh(); // Fill the Mesh with data read in "file", left as an exercise to the reader. String filename = savePath + "." + GetSaveExtension(); - ResourceSaver.Save(filename, mesh); - return (int)Error.Ok; + return (int)ResourceSaver.Save(filename, mesh); } } [/csharp] @@ -220,7 +218,7 @@ <return type="String"> </return> <description> - Gets the name to display in the import window. + Gets the name to display in the import window. You should choose this name as a continuation to "Import as", e.g. "Import as Special Mesh". </description> </method> <method name="import" qualifiers="virtual"> |