소스 검색

Fixes typo in reference to normalized method.

René van der Ark 1 년 전
부모
커밋
4ada3f63a6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      getting_started/first_3d_game/03.player_movement_code.rst

+ 1 - 1
getting_started/first_3d_game/03.player_movement_code.rst

@@ -129,7 +129,7 @@ These four conditions give us eight possibilities and eight possible directions.
 In case the player presses, say, both W and D simultaneously, the vector will
 have a length of about ``1.4``. But if they press a single key, it will have a
 length of ``1``. We want the vector's length to be consistent, and not move faster diagonally. To do so, we can
-call its ``normalize()`` method.
+call its ``normalized()`` method.
 
 .. tabs::
  .. code-tab:: gdscript GDScript