diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-05-22 19:28:37 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-05-22 19:29:06 -0300 |
commit | b2a4908e9cc802a838a67f92dd66a17d3894c619 (patch) | |
tree | c1980369034a13728295f53f1f737b9fa7d174f5 /scene/main | |
parent | ec7c36aa3eccaa1bb26c119041fd6c9459396a1c (diff) |
Real-Time Remote Inspector support
Diffstat (limited to 'scene/main')
-rw-r--r-- | scene/main/scene_main_loop.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/scene_main_loop.cpp b/scene/main/scene_main_loop.cpp index b83ad7381e..24fe1e1bb3 100644 --- a/scene/main/scene_main_loop.cpp +++ b/scene/main/scene_main_loop.cpp @@ -1002,6 +1002,7 @@ static void _fill_array(Node *p_node, Array& array, int p_level) { array.push_back(p_level); array.push_back(p_node->get_name()); array.push_back(p_node->get_type()); + array.push_back(p_node->get_instance_ID()); for(int i=0;i<p_node->get_child_count();i++) { _fill_array(p_node->get_child(i),array,p_level+1); |