浏览代码

better unique name resolution, as suggested i #3017

Juan Linietsky 9 年之前
父节点
当前提交
ecad3a285f
共有 1 个文件被更改,包括 1 次插入5 次删除
  1. 1 5
      scene/main/node.cpp

+ 1 - 5
scene/main/node.cpp

@@ -700,11 +700,7 @@ void Node::_validate_child_name(Node *p_child, bool p_force_human_readable) {
 		if (!unique) {
 
 			node_hrcr_count.ref();
-#ifdef DEBUG_ENABLED
-			String name = "@"+String(p_child->get_type_name())+itos(node_hrcr_count.get());
-#else
-			String name = "@"+itos(node_hrcr_count.get());
-#endif
+			String name = "@"+String(p_child->get_name())+"@"+itos(node_hrcr_count.get());
 			p_child->data.name=name;
 		}
 	}