1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-21 14:57:09 +00:00

Fixed too many little issues, check the issues closed today.

This commit is contained in:
Juan Linietsky
2014-09-21 01:43:42 -03:00
parent c5b905fca8
commit 11a5ed508b
24 changed files with 306 additions and 44 deletions

View File

@@ -1107,7 +1107,7 @@ void Node::get_groups(List<GroupInfo> *p_groups) const {
void Node::_print_tree(const Node *p_node) {
printf("%ls\n", String(p_node->get_path_to(this)).c_str());
print_line(String(p_node->get_path_to(this)));
for (int i=0;i<data.children.size();i++)
data.children[i]->_print_tree(p_node);
}