diff options
| author | Juan Linietsky | 2017-01-25 21:55:59 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-01-25 21:57:08 -0300 |
| commit | 96de0141ccef3bb035574010816dafdbfc17eb63 (patch) | |
| tree | 24bcad418177b4aba1a24d959a50ff401028f0ea /tools/editor/editor_file_system.cpp | |
| parent | ae258e2679bd9deda8b311d030771fab03303833 (diff) | |
| download | godot-96de0141ccef3bb035574010816dafdbfc17eb63.tar.gz godot-96de0141ccef3bb035574010816dafdbfc17eb63.tar.zst godot-96de0141ccef3bb035574010816dafdbfc17eb63.zip | |
Removed import/export system, will start new one from scratch.
Diffstat (limited to '')
| -rw-r--r-- | tools/editor/editor_file_system.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/editor/editor_file_system.cpp b/tools/editor/editor_file_system.cpp index 39869beef..120cbb971 100644 --- a/tools/editor/editor_file_system.cpp +++ b/tools/editor/editor_file_system.cpp @@ -247,6 +247,8 @@ EditorFileSystemDirectory::~EditorFileSystemDirectory() { EditorFileSystemDirectory::ImportMeta EditorFileSystem::_get_meta(const String& p_path) { + return EditorFileSystemDirectory::ImportMeta(); +#if 0 Ref<ResourceImportMetadata> imd = ResourceLoader::load_import_metadata(p_path); EditorFileSystemDirectory::ImportMeta m; if (imd.is_null()) { @@ -274,6 +276,7 @@ EditorFileSystemDirectory::ImportMeta EditorFileSystem::_get_meta(const String& } return m; +#endif } @@ -535,7 +538,7 @@ bool EditorFileSystem::_check_meta_sources(EditorFileSystemDirectory::ImportMeta for(int j=0;j<p_meta.sources.size();j++) { - +#if 0 String src = EditorImportPlugin::expand_source_path(p_meta.sources[j].path); if (!FileAccess::exists(src)) { @@ -559,6 +562,7 @@ bool EditorFileSystem::_check_meta_sources(EditorFileSystemDirectory::ImportMeta } p_meta.sources[j].modified_time=mt; } +#endif } } |
