You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Revert "Update Node::get_configuration_warnings signature"
This reverts commit d3852deaa4.
This commit is contained in:
@@ -82,9 +82,9 @@ bool MissingNode::is_recording_properties() const {
|
||||
return recording_properties;
|
||||
}
|
||||
|
||||
Array MissingNode::get_configuration_warnings() const {
|
||||
PackedStringArray MissingNode::get_configuration_warnings() const {
|
||||
// The mere existence of this node is warning.
|
||||
Array ret;
|
||||
PackedStringArray ret;
|
||||
if (!original_scene.is_empty()) {
|
||||
ret.push_back(vformat(RTR("This node was an instance of scene '%s', which was no longer available when this scene was loaded."), original_scene));
|
||||
ret.push_back(vformat(RTR("Saving current scene will discard instance and all its properties, including editable children edits (if existing).")));
|
||||
|
||||
Reference in New Issue
Block a user