|
@@ -10,25 +10,25 @@ export interface MeshToonMaterialParameters extends MaterialParameters {
|
|
|
specular?: Color | string | number;
|
|
|
shininess?: number;
|
|
|
opacity?: number;
|
|
|
- gradientMap?: Texture | null;
|
|
|
- map?: Texture | null;
|
|
|
- lightMap?: Texture | null;
|
|
|
+ gradientMap?: Texture | null;
|
|
|
+ map?: Texture | null;
|
|
|
+ lightMap?: Texture | null;
|
|
|
lightMapIntensity?: number;
|
|
|
- aoMap?: Texture | null;
|
|
|
+ aoMap?: Texture | null;
|
|
|
aoMapIntensity?: number;
|
|
|
emissive?: Color | string | number;
|
|
|
emissiveIntensity?: number;
|
|
|
- emissiveMap?: Texture | null;
|
|
|
- bumpMap?: Texture | null;
|
|
|
+ emissiveMap?: Texture | null;
|
|
|
+ bumpMap?: Texture | null;
|
|
|
bumpScale?: number;
|
|
|
- normalMap?: Texture | null;
|
|
|
+ normalMap?: Texture | null;
|
|
|
normalMapType?: NormalMapTypes;
|
|
|
normalScale?: Vector2;
|
|
|
- displacementMap?: Texture | null;
|
|
|
+ displacementMap?: Texture | null;
|
|
|
displacementScale?: number;
|
|
|
displacementBias?: number;
|
|
|
- specularMap?: Texture | null;
|
|
|
- alphaMap?: Texture | null;
|
|
|
+ specularMap?: Texture | null;
|
|
|
+ alphaMap?: Texture | null;
|
|
|
wireframe?: boolean;
|
|
|
wireframeLinewidth?: number;
|
|
|
wireframeLinecap?: string;
|
|
@@ -45,7 +45,7 @@ export class MeshToonMaterial extends Material {
|
|
|
color: Color;
|
|
|
specular: Color;
|
|
|
shininess: number;
|
|
|
- gradientMap: Texture | null;
|
|
|
+ gradientMap: Texture | null;
|
|
|
map: Texture | null;
|
|
|
lightMap: Texture | null;
|
|
|
lightMapIntensity: number;
|