Merge pull request #52759 from Calinou/3d-editor-gizmo-no-name-warning
This commit is contained in:
commit
44b1143f7b
|
@ -1003,7 +1003,9 @@ String EditorNode3DGizmoPlugin::get_gizmo_name() const {
|
|||
if (get_script_instance() && get_script_instance()->has_method("_get_gizmo_name")) {
|
||||
return get_script_instance()->call("_get_gizmo_name");
|
||||
}
|
||||
return TTR("Nameless gizmo");
|
||||
|
||||
WARN_PRINT_ONCE("A 3D editor gizmo has no name defined (it will appear as \"Unnamed Gizmo\" in the \"View > Gizmos\" menu). To resolve this, override the `_get_gizmo_name()` function to return a String in the script that extends EditorNode3DGizmoPlugin.");
|
||||
return TTR("Unnamed Gizmo");
|
||||
}
|
||||
|
||||
int EditorNode3DGizmoPlugin::get_priority() const {
|
||||
|
|
Loading…
Reference in New Issue