Browse Source

Updated MeshNormaMaterial doc

looeee 8 years ago
parent
commit
9029fd23af
1 changed files with 24 additions and 13 deletions
  1. 24 13
      docs/api/materials/MeshNormalMaterial.html

+ 24 - 13
docs/api/materials/MeshNormalMaterial.html

@@ -36,33 +36,44 @@
 
 
 		<h3>[name]( [page:Object parameters] )</h3>
 		<h3>[name]( [page:Object parameters] )</h3>
 		<div>
 		<div>
-		parameters is an object with one or more properties defining the material's appearance.
-		</div>
-		<div>
-		wireframe -- Render geometry as wireframe. Default is false (i.e. render as smooth shaded).<br/>
-		wireframeLinewidth -- Controls wireframe thickness. Default is 1.<br/>
-		morphTargets -- Define whether the material uses morphTargets. Default is false.<br/>
+			[page:Object parameters] - (optional) an object with one or more properties defining the material's appearance.
+			Any property of the material (including any property inherited from [page:Material]) can be passed in here.
 		</div>
 		</div>
 
 
 
 
 		<h2>Properties</h2>
 		<h2>Properties</h2>
 		<div>See the base [page:Material] class for common properties.</div>
 		<div>See the base [page:Material] class for common properties.</div>
 
 
-		<h3>[property:boolean wireframe]</h3>
-		<div>
-			Render geometry as wireframe. Default is false (i.e. render as smooth shaded).
-		</div>
+		<h3>[property:Boolean fog]</h3>
+		<div>Whether the material is affected by fog. Default is *false*.</div>
 
 
-		<h3>[property:number wireframeLinewidth]</h3>
+		<h3>[property:Boolean isMeshNormalMaterial]</h3>
 		<div>
 		<div>
-			Controls wireframe thickness. Default is 1.<br/><br/>
-			Due to limitations in the ANGLE layer, on Windows platforms linewidth will always be 1 regardless of the set value.
+			Used to check whether this or derived classes are mesh normal materials. Default is *true*.<br /><br />
+
+			You should not change this, as it used internally for optimisation.
 		</div>
 		</div>
 
 
+		<h3>[property:Boolean lights]</h3>
+		<div>Whether the material is affected by lights. Default is *false*.</div>
+
 		<h3>[property:boolean morphTargets]</h3>
 		<h3>[property:boolean morphTargets]</h3>
 		<div>Define whether the material uses morphTargets. Default is false.</div>
 		<div>Define whether the material uses morphTargets. Default is false.</div>
 
 
+		<h3>[property:boolean wireframe]</h3>
+		<div>
+			Render geometry as wireframe. Default is false (i.e. render as smooth shaded).
+		</div>
+
+		<h3>[property:Float wireframeLinewidth]</h3>
+		<div>Controls wireframe thickness. Default is 1.<br /><br />
+
+		Due to limitations in the [link:https://code.google.com/p/angleproject ANGLE layer],
+		on Windows platforms linewidth will always be 1 regardless of the set value.
+		</div>
+
 		<h2>Methods</h2>
 		<h2>Methods</h2>
+		<div>See the base [page:Material] class for common methods.</div>