Browse Source

Merge pull request #7144 from felixmreeve/patch-1

Max Hilbrunner 2 years ago
parent
commit
b058effbc1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/first_3d_game/04.mob_scene.rst

+ 1 - 1
getting_started/first_3d_game/04.mob_scene.rst

@@ -239,7 +239,7 @@ method. This function destroy the instance it's called on.
 .. tabs::
  .. code-tab:: gdscript GDScript
 
-   func _on_VisibilityNotifier_screen_exited():
+   func _on_visible_on_screen_notifier_3d_screen_exited():
        queue_free()
 
  .. code-tab:: csharp