Removed import/export system, will start new one from scratch.
This commit is contained in:
parent
ae258e2679
commit
96de0141cc
56 changed files with 350 additions and 805 deletions
|
|
@ -38,7 +38,7 @@
|
|||
GDScriptLanguage *script_language_gd=NULL;
|
||||
ResourceFormatLoaderGDScript *resource_loader_gd=NULL;
|
||||
ResourceFormatSaverGDScript *resource_saver_gd=NULL;
|
||||
|
||||
#if 0
|
||||
#ifdef TOOLS_ENABLED
|
||||
|
||||
#include "tools/editor/editor_import_export.h"
|
||||
|
|
@ -135,7 +135,7 @@ static void register_editor_plugin() {
|
|||
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
void register_gdscript_types() {
|
||||
|
||||
ClassDB::register_class<GDScript>();
|
||||
|
|
@ -148,11 +148,12 @@ void register_gdscript_types() {
|
|||
ResourceLoader::add_resource_format_loader(resource_loader_gd);
|
||||
resource_saver_gd=memnew( ResourceFormatSaverGDScript );
|
||||
ResourceSaver::add_resource_format_saver(resource_saver_gd);
|
||||
|
||||
#if 0
|
||||
#ifdef TOOLS_ENABLED
|
||||
|
||||
EditorNode::add_init_callback(register_editor_plugin);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
}
|
||||
void unregister_gdscript_types() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue