Skip to content

Commit

Permalink
Merge pull request #94997 from erictuvesson/fix/typo
Browse files Browse the repository at this point in the history
Fix typo in EditorPlugin `_forward_3d_draw_over_viewport(overlay)` method example
  • Loading branch information
akien-mga committed Aug 6, 2024
2 parents 8c512c6 + f810d18 commit 0e244fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/classes/EditorPlugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0e244fc

Please sign in to comment.