Просмотр исходного кода

clarify the example in SkinnedMesh docs (#23423)

makc 3 лет назад
Родитель
Сommit
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;