summaryrefslogtreecommitdiffstats
path: root/editor/editor_folding.h
diff options
context:
space:
mode:
authorJuan Linietsky <juan@godotengine.org>2018-10-29 16:36:31 -0300
committerJuan Linietsky <juan@godotengine.org>2018-10-29 16:37:09 -0300
commite647342140d8eb960b2a72d83b4b86e43aef4fc7 (patch)
tree31c57d44ce2c76197114e85e1733ed5d080bd50a /editor/editor_folding.h
parent786ece2375c607e79c52b71ff82ebb1a3c1af411 (diff)
downloadredot-engine-e647342140d8eb960b2a72d83b4b86e43aef4fc7.tar.gz
Moved folding outside the resource files, now saved outside the project.
Diffstat (limited to 'editor/editor_folding.h')
-rw-r--r--editor/editor_folding.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/editor/editor_folding.h b/editor/editor_folding.h
new file mode 100644
index 0000000000..b1b423cffc
--- /dev/null
+++ b/editor/editor_folding.h
@@ -0,0 +1,23 @@
+#ifndef EDITOR_FOLDING_H
+#define EDITOR_FOLDING_H
+
+#include "scene/main/node.h"
+
+class EditorFolding {
+
+ PoolVector<String> _get_unfolds(const Object *p_object);
+ void _set_unfolds(Object *p_object, const PoolVector<String> &p_unfolds);
+
+ void _fill_folds(const Node *p_root, const Node *p_node, Array &p_folds, Array &resource_folds, Set<RES> &resources);
+
+public:
+ void save_resource_folding(const RES &p_resource, const String &p_path);
+ void load_resource_folding(RES p_resource, const String &p_path);
+
+ void save_scene_folding(const Node *p_scene, const String &p_path);
+ void load_scene_folding(Node *p_scene, const String &p_path);
+
+ EditorFolding();
+};
+
+#endif // EDITOR_FOLDING_H