소스 검색

PoolVector3Array now should be PackedVector3Array

Scott Campbell 1 년 전
부모
커밋
59c44c591b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tutorials/navigation/navigation_using_navigationservers.rst

+ 1 - 1
tutorials/navigation/navigation_using_navigationservers.rst

@@ -135,7 +135,7 @@ Afterwards the function waits for the next physics_frame before continuing with
 
         # create a procedural navigation mesh for the region
         var new_navigation_mesh: NavigationMesh = NavigationMesh.new()
-        var vertices: PackedVector3Array = PoolVector3Array([
+        var vertices: PackedVector3Array = PackedVector3Array([
             Vector3(0,0,0),
             Vector3(9.0,0,0),
             Vector3(0,0,9.0)