Several improvements and fixes to import system. Might fix many issues opened, but have to check in detail..
This commit is contained in:
parent
523b3c11cf
commit
33c1d25517
3 changed files with 78 additions and 5 deletions
|
|
@ -137,6 +137,11 @@ class EditorFileSystem : public Node {
|
|||
|
||||
void _scan_filesystem();
|
||||
|
||||
Set<String> late_added_files; //keep track of files that were added, these will be re-scanned
|
||||
Set<String> late_update_files;
|
||||
|
||||
void _save_late_updated_files();
|
||||
|
||||
EditorFileSystemDirectory *filesystem;
|
||||
|
||||
static EditorFileSystem *singleton;
|
||||
|
|
@ -196,6 +201,8 @@ class EditorFileSystem : public Node {
|
|||
|
||||
bool reimport_on_missing_imported_files;
|
||||
|
||||
Vector<String> _get_dependencies(const String &p_path);
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
static void _bind_methods();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue