| 12345678910111213141516 |
- import { Texture } from './../textures/Texture';
- import { MeshPhongMaterialParameters, MeshPhongMaterial } from './MeshPhongMaterial';
- export interface MeshToonMaterialParameters extends MeshPhongMaterialParameters {
- gradientMap?: Texture;
- }
- export class MeshToonMaterial extends MeshPhongMaterial {
- constructor( parameters?: MeshToonMaterialParameters );
- gradientMap: Texture | null;
- setValues( parameters: MeshToonMaterialParameters ): void;
- }
|