summaryrefslogtreecommitdiff
path: root/scene/main/node.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-07 22:08:12 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-06-07 22:10:09 -0300
commitd61b91cbe0c05466182b15a6dd1899e92fcac749 (patch)
tree3021e43e4e99650062275407616d613b105e13d8 /scene/main/node.h
parent193272aa8a809168b836dde3535cf96ce1f52264 (diff)
-Heavily improved editor startup and exit performance
Diffstat (limited to 'scene/main/node.h')
-rw-r--r--scene/main/node.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/main/node.h b/scene/main/node.h
index cf62e7cdea..d099f6e773 100644
--- a/scene/main/node.h
+++ b/scene/main/node.h
@@ -64,6 +64,7 @@ private:
struct GroupData {
bool persistent;
+ SceneTree::Group *group;
GroupData() { persistent=false; }
};
@@ -91,7 +92,7 @@ private:
Viewport *viewport;
- HashMap< StringName, GroupData,StringNameHasher> grouped;
+ Map< StringName, GroupData> grouped;
List<Node*>::Element *OW; // owned element
List<Node*> owned;