浏览代码

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;