diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-05-17 09:14:23 +0200 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-05-17 09:14:23 +0200 |
commit | 68dc685f1f6182d306fd7a3b31b27ab7c8e10b73 (patch) | |
tree | 56e449ec38b9d69654ddb5f05f1918a415e3ede3 /scene/main/node.h | |
parent | f93aaa9b7896231e80379a17938b9aca26429dd0 (diff) | |
parent | aee156dc023e8cf4db5c5ee51fe6b2b46c7c1660 (diff) |
Merge pull request #4652 from Paulb23/node_duplication_position
Node duplication positions under duplicated node, issue #964
Diffstat (limited to 'scene/main/node.h')
-rw-r--r-- | scene/main/node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/node.h b/scene/main/node.h index 83086bb0cf..4756909e23 100644 --- a/scene/main/node.h +++ b/scene/main/node.h @@ -190,6 +190,7 @@ public: void set_name(const String& p_name); void add_child(Node *p_child,bool p_legible_unique_name=false); + void add_child_below_node(Node *p_node, Node *p_child, bool p_legible_unique_name=false); void remove_child(Node *p_child); int get_child_count() const; |