소스 검색

clarify the example in SkinnedMesh docs (#23423)

makc 3 년 전
부모
커밋
63cf8afd7c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      docs/api/en/objects/SkinnedMesh.html

+ 2 - 1
docs/api/en/objects/SkinnedMesh.html

@@ -38,7 +38,8 @@
 		<code>
 		const geometry = new THREE.CylinderGeometry( 5, 5, 5, 5, 15, 5, 30 );
 
-		// create the skin indices and skin weights
+		// create the skin indices and skin weights manually
+		// (typically a loader would read this data from a 3D model for you)
 
 		const position = geometry.attributes.position;