소스 검색

Update procedural_geometry.rst

Lines 24 and 68 should be 'Mesh.PRIMITIVE_TRIANGLES' and not 'Mesh.PRIMITIVE_TRIANGLE'
tree786 6 년 전
부모
커밋
05fb9e7f93
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tutorials/content/procedural_geometry.rst

+ 2 - 2
tutorials/content/procedural_geometry.rst

@@ -21,7 +21,7 @@ Here is a simple example of how to use it to add a single triangle.
 
     var st = SurfaceTool.new()
 
-    st.begin(Mesh.PRIMITIVE_TRIANGLE)
+    st.begin(Mesh.PRIMITIVE_TRIANGLES)
 
     # Prepare attributes for add_vertex.
     st.add_normal(Vector3(0, 0, 1))
@@ -65,7 +65,7 @@ It's used similar to *SurfaceTool*.
         clear()
 
         # Begin draw.
-        begin(Mesh.PRIMITIVE_TRIANGLE)
+        begin(Mesh.PRIMITIVE_TRIANGLES)
 
         # Prepare attributes for add_vertex.
         set_normal( Vector3(0, 0, 1))