Merge pull request #94997 from erictuvesson/fix/typo

Fix typo in EditorPlugin `_forward_3d_draw_over_viewport(overlay)` method example
This commit is contained in:
Rémi Verschelde 2024-08-06 12:30:42 +02:00
commit 0e244fcd97
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@
[gdscript] [gdscript]
func _forward_3d_draw_over_viewport(overlay): func _forward_3d_draw_over_viewport(overlay):
# Draw a circle at cursor position. # 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): func _forward_3d_gui_input(camera, event):
if event is InputEventMouseMotion: if event is InputEventMouseMotion: