mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 17:33:33 +00:00
Added basic support for custom resource savers and loaders
This commit is contained in:
parent
ca28c455bf
commit
065e2670af
77 changed files with 1102 additions and 145 deletions
|
@ -39,6 +39,9 @@
|
|||
class PluginScriptLanguage;
|
||||
|
||||
class ResourceFormatLoaderPluginScript : public ResourceFormatLoader {
|
||||
|
||||
GDCLASS(ResourceFormatLoaderPluginScript, ResourceFormatLoader)
|
||||
|
||||
PluginScriptLanguage *_language;
|
||||
|
||||
public:
|
||||
|
@ -50,6 +53,9 @@ public:
|
|||
};
|
||||
|
||||
class ResourceFormatSaverPluginScript : public ResourceFormatSaver {
|
||||
|
||||
GDCLASS(ResourceFormatSaverPluginScript, ResourceFormatSaver)
|
||||
|
||||
PluginScriptLanguage *_language;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue