mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-03 05:48:42 +03:00
Merge pull request #6717 from Flavelius/patch-1
Fix wrong registration method names for 3D gizmo plugins
This commit is contained in:
@@ -49,11 +49,11 @@ This would be a basic setup:
|
||||
|
||||
|
||||
func _enter_tree():
|
||||
add_node3d_gizmo_plugin(gizmo_plugin)
|
||||
add_node_3d_gizmo_plugin(gizmo_plugin)
|
||||
|
||||
|
||||
func _exit_tree():
|
||||
remove_node3d_gizmo_plugin(gizmo_plugin)
|
||||
remove_node_3d_gizmo_plugin(gizmo_plugin)
|
||||
|
||||
|
||||
For simple gizmos, inheriting :ref:`EditorNode3DGizmoPlugin <class_EditorNode3DGizmoPlugin>`
|
||||
|
||||
Reference in New Issue
Block a user