aboutsummaryrefslogtreecommitdiff
path: root/scene/main/scene_main_loop.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2016-05-22 19:28:37 -0300
committerJuan Linietsky2016-05-22 19:29:06 -0300
commitb2a4908e9cc802a838a67f92dd66a17d3894c619 (patch)
treec1980369034a13728295f53f1f737b9fa7d174f5 /scene/main/scene_main_loop.cpp
parentec7c36aa3eccaa1bb26c119041fd6c9459396a1c (diff)
downloadgodot-b2a4908e9cc802a838a67f92dd66a17d3894c619.tar.gz
godot-b2a4908e9cc802a838a67f92dd66a17d3894c619.tar.zst
godot-b2a4908e9cc802a838a67f92dd66a17d3894c619.zip
Real-Time Remote Inspector support
Diffstat (limited to 'scene/main/scene_main_loop.cpp')
-rw-r--r--scene/main/scene_main_loop.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/scene_main_loop.cpp b/scene/main/scene_main_loop.cpp
index b83ad7381..24fe1e1bb 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);