MeshToonMaterial.d.ts 456 B

12345678910111213141516
  1. import { Texture } from './../textures/Texture';
  2. import { MeshPhongMaterialParameters, MeshPhongMaterial } from './MeshPhongMaterial';
  3. export interface MeshToonMaterialParameters extends MeshPhongMaterialParameters {
  4. gradientMap?: Texture;
  5. }
  6. export class MeshToonMaterial extends MeshPhongMaterial {
  7. constructor( parameters?: MeshToonMaterialParameters );
  8. gradientMap: Texture | null;
  9. setValues( parameters: MeshToonMaterialParameters ): void;
  10. }