You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Fix typo in EditorPlugin _forward_3d_draw_over_viewport(overlay) method example
Too few arguments for "draw_circle()" call. Expected at least 3 but received 2.
This commit is contained in:
@@ -60,7 +60,7 @@
|
||||
[gdscript]
|
||||
func _forward_3d_draw_over_viewport(overlay):
|
||||
# Draw a circle at cursor position.
|
||||
overlay.draw_circle(overlay.get_local_mouse_position(), 64)
|
||||
overlay.draw_circle(overlay.get_local_mouse_position(), 64, Color.WHITE)
|
||||
|
||||
func _forward_3d_gui_input(camera, event):
|
||||
if event is InputEventMouseMotion:
|
||||
|
||||
Reference in New Issue
Block a user