Update all get_configuration_warning to retrieve warnings from the parent
This commit is contained in:
@@ -180,11 +180,16 @@ void RemoteTransform3D::force_update_cache() {
|
||||
}
|
||||
|
||||
String RemoteTransform3D::get_configuration_warning() const {
|
||||
String warning = Node3D::get_configuration_warning();
|
||||
|
||||
if (!has_node(remote_node) || !Object::cast_to<Node3D>(get_node(remote_node))) {
|
||||
return TTR("The \"Remote Path\" property must point to a valid Node3D or Node3D-derived node to work.");
|
||||
if (!warning.empty()) {
|
||||
warning += "\n\n";
|
||||
}
|
||||
warning += TTR("The \"Remote Path\" property must point to a valid Node3D or Node3D-derived node to work.");
|
||||
}
|
||||
|
||||
return String();
|
||||
return warning;
|
||||
}
|
||||
|
||||
void RemoteTransform3D::_bind_methods() {
|
||||
|
||||
Reference in New Issue
Block a user