Fix outdated method name in code sample in 3D gizmo plugins (#9695)

Addresses "Unnamed Gizmo" error when following example code;
now overriding `_get_gizmo_name` function, not `get_name`.
This commit is contained in:
The-Cyber-Captain
2024-08-02 00:41:45 +01:00
committed by GitHub
parent f9f9b69313
commit a293204d03

View File

@@ -34,7 +34,7 @@ This would be a basic setup:
extends EditorNode3DGizmoPlugin
func get_name():
func _get_gizmo_name():
return "CustomNode"