소스 검색

Merge pull request #10382 from Glinkis/dev

Updates the documentation for LineBasicMaterial and LineDashedMaterial
Mr.doob 8 년 전
부모
커밋
6124ef0b26
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      docs/api/materials/LineBasicMaterial.html
  2. 1 1
      docs/api/materials/LineDashedMaterial.html

+ 1 - 1
docs/api/materials/LineBasicMaterial.html

@@ -38,7 +38,7 @@
 		<code>
 var material = new THREE.LineBasicMaterial( {
 	color: 0xffffff,
-	lineWidth: 1,
+	linewidth: 1,
 	linecap: 'round', //ignored by WebGLRenderer
 	linejoin:  'round' //ignored by WebGLRenderer
 } );

+ 1 - 1
docs/api/materials/LineDashedMaterial.html

@@ -24,7 +24,7 @@
 		<code>
 var material = new THREE.LineDashedMaterial( {
 	color: 0xffffff,
-	lineWidth: 1,
+	linewidth: 1,
 	scale: 1,
 	dashSize: 3,
 	gapSize: 1,