You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Merge pull request #87252 from ajreckof/Fix-renaming-a-node-to-the-name-of-its-siblings-breaking-NodePath
Fix renaming a node to the name of its siblings breaking NodePath
This commit is contained in:
@@ -1214,6 +1214,11 @@ String Node::validate_child_name(Node *p_child) {
|
||||
_generate_serial_child_name(p_child, name);
|
||||
return name;
|
||||
}
|
||||
|
||||
String Node::prevalidate_child_name(Node *p_child, StringName p_name) {
|
||||
_generate_serial_child_name(p_child, p_name);
|
||||
return p_name;
|
||||
}
|
||||
#endif
|
||||
|
||||
String Node::adjust_name_casing(const String &p_name) {
|
||||
|
||||
Reference in New Issue
Block a user