123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- import { Plane } from './../math/Plane';
- import { EventDispatcher } from './../core/EventDispatcher';
- import { WebGLRenderer } from './../renderers/WebGLRenderer';
- import { Shader } from './../renderers/shaders/ShaderLib';
- import {
- BlendingDstFactor,
- BlendingEquation,
- Blending,
- BlendingSrcFactor,
- DepthModes,
- Side,
- StencilFunc,
- StencilOp
- } from '../constants';
- export interface MaterialParameters {
- alphaTest?: number;
- blendDst?: BlendingDstFactor;
- blendDstAlpha?: number;
- blendEquation?: BlendingEquation;
- blendEquationAlpha?: number;
- blending?: Blending;
- blendSrc?: BlendingSrcFactor | BlendingDstFactor;
- blendSrcAlpha?: number;
- clipIntersection?: boolean;
- clippingPlanes?: Plane[];
- clipShadows?: boolean;
- colorWrite?: boolean;
- defines?: any;
- depthFunc?: DepthModes;
- depthTest?: boolean;
- depthWrite?: boolean;
- fog?: boolean;
- name?: string;
- opacity?: number;
- polygonOffset?: boolean;
- polygonOffsetFactor?: number;
- polygonOffsetUnits?: number;
- precision?: 'highp' | 'mediump' | 'lowp' | null;
- premultipliedAlpha?: boolean;
- dithering?: boolean;
- flatShading?: boolean;
- side?: Side;
- shadowSide?: Side;
- toneMapped?: boolean;
- transparent?: boolean;
- vertexColors?: boolean;
- visible?: boolean;
- stencilWrite?: boolean;
- stencilFunc?: StencilFunc;
- stencilRef?: number;
- stencilWriteMask?: number;
- stencilFuncMask?: number;
- stencilFail?: StencilOp;
- stencilZFail?: StencilOp;
- stencilZPass?: StencilOp;
- userData?: any;
- }
- /**
- * Materials describe the appearance of objects. They are defined in a (mostly) renderer-independent way, so you don't have to rewrite materials if you decide to use a different renderer.
- */
- export class Material extends EventDispatcher {
- constructor();
- /**
- * Sets the alpha value to be used when running an alpha test. Default is 0.
- * @default 0
- */
- alphaTest: number;
- /**
- * Blending destination. It's one of the blending mode constants defined in Three.js. Default is {@link OneMinusSrcAlphaFactor}.
- * @default THREE.OneMinusSrcAlphaFactor
- */
- blendDst: BlendingDstFactor;
- /**
- * The tranparency of the .blendDst. Default is null.
- * @default null
- */
- blendDstAlpha: number | null;
- /**
- * Blending equation to use when applying blending. It's one of the constants defined in Three.js. Default is {@link AddEquation}.
- * @default THREE.AddEquation
- */
- blendEquation: BlendingEquation;
- /**
- * The tranparency of the .blendEquation. Default is null.
- * @default null
- */
- blendEquationAlpha: number | null;
- /**
- * Which blending to use when displaying objects with this material. Default is {@link NormalBlending}.
- * @default THREE.NormalBlending
- */
- blending: Blending;
- /**
- * Blending source. It's one of the blending mode constants defined in Three.js. Default is {@link SrcAlphaFactor}.
- * @default THREE.SrcAlphaFactor
- */
- blendSrc: BlendingSrcFactor | BlendingDstFactor;
- /**
- * The tranparency of the .blendSrc. Default is null.
- * @default null
- */
- blendSrcAlpha: number | null;
- /**
- * Changes the behavior of clipping planes so that only their intersection is clipped, rather than their union. Default is false.
- * @default false
- */
- clipIntersection: boolean;
- /**
- * User-defined clipping planes specified as THREE.Plane objects in world space. These planes apply to the objects this material is attached to. Points in space whose signed distance to the plane is negative are clipped (not rendered). See the WebGL / clipping /intersection example. Default is null.
- * @default null
- */
- clippingPlanes: any;
- /**
- * Defines whether to clip shadows according to the clipping planes specified on this material. Default is false.
- * @default false
- */
- clipShadows: boolean;
- /**
- * Whether to render the material's color. This can be used in conjunction with a mesh's .renderOrder property to create invisible objects that occlude other objects. Default is true.
- * @default true
- */
- colorWrite: boolean;
- /**
- * Custom defines to be injected into the shader. These are passed in form of an object literal, with key/value pairs. { MY_CUSTOM_DEFINE: '' , PI2: Math.PI * 2 }.
- * The pairs are defined in both vertex and fragment shaders. Default is undefined.
- * @default undefined
- */
- defines: undefined | { [key: string]: any };
- /**
- * Which depth function to use. Default is {@link LessEqualDepth}. See the depth mode constants for all possible values.
- * @default THREE.LessEqualDepth
- */
- depthFunc: DepthModes;
- /**
- * Whether to have depth test enabled when rendering this material. Default is true.
- * @default true
- */
- depthTest: boolean;
- /**
- * Whether rendering this material has any effect on the depth buffer. Default is true.
- * When drawing 2D overlays it can be useful to disable the depth writing in order to layer several things together without creating z-index artifacts.
- * @default true
- */
- depthWrite: boolean;
- /**
- * Whether the material is affected by fog. Default is true.
- * @default fog
- */
- fog: boolean;
- /**
- * Unique number of this material instance.
- */
- id: number;
- /**
- * Whether rendering this material has any effect on the stencil buffer. Default is *false*.
- * @default false
- */
- stencilWrite: boolean;
- /**
- * The stencil comparison function to use. Default is {@link AlwaysStencilFunc}. See stencil operation constants for all possible values.
- * @default THREE.AlwaysStencilFunc
- */
- stencilFunc: StencilFunc;
- /**
- * The value to use when performing stencil comparisons or stencil operations. Default is *0*.
- * @default 0
- */
- stencilRef: number;
- /**
- * The bit mask to use when writing to the stencil buffer. Default is *0xFF*.
- * @default 0xff
- */
- stencilWriteMask: number;
- /**
- * The bit mask to use when comparing against the stencil buffer. Default is *0xFF*.
- * @default 0xff
- */
- stencilFuncMask: number;
- /**
- * Which stencil operation to perform when the comparison function returns false. Default is {@link KeepStencilOp}. See the stencil operation constants for all possible values.
- * @default THREE.KeepStencilOp
- */
- stencilFail: StencilOp;
- /**
- * Which stencil operation to perform when the comparison function returns true but the depth test fails. Default is {@link KeepStencilOp}. See the stencil operation constants for all possible values.
- * @default THREE.KeepStencilOp
- */
- stencilZFail: StencilOp;
- /**
- * Which stencil operation to perform when the comparison function returns true and the depth test passes. Default is {@link KeepStencilOp}. See the stencil operation constants for all possible values.
- * @default THREE.KeepStencilOp
- */
- stencilZPass: StencilOp;
- /**
- * Used to check whether this or derived classes are materials. Default is true.
- * You should not change this, as it used internally for optimisation.
- */
- readonly isMaterial: true;
- /**
- * Material name. Default is an empty string.
- * @default ''
- */
- name: string;
- /**
- * Specifies that the material needs to be updated, WebGL wise. Set it to true if you made changes that need to be reflected in WebGL.
- * This property is automatically set to true when instancing a new material.
- * @default false
- */
- needsUpdate: boolean;
- /**
- * Opacity. Default is 1.
- * @default 1
- */
- opacity: number;
- /**
- * Whether to use polygon offset. Default is false. This corresponds to the POLYGON_OFFSET_FILL WebGL feature.
- * @default false
- */
- polygonOffset: boolean;
- /**
- * Sets the polygon offset factor. Default is 0.
- * @default 0
- */
- polygonOffsetFactor: number;
- /**
- * Sets the polygon offset units. Default is 0.
- * @default 0
- */
- polygonOffsetUnits: number;
- /**
- * Override the renderer's default precision for this material. Can be "highp", "mediump" or "lowp". Defaults is null.
- * @default null
- */
- precision: 'highp' | 'mediump' | 'lowp' | null;
- /**
- * Whether to premultiply the alpha (transparency) value. See WebGL / Materials / Transparency for an example of the difference. Default is false.
- * @default false
- */
- premultipliedAlpha: boolean;
- /**
- * Whether to apply dithering to the color to remove the appearance of banding. Default is false.
- * @default false
- */
- dithering: boolean;
- /**
- * Define whether the material is rendered with flat shading. Default is false.
- * @default false
- */
- flatShading: boolean;
- /**
- * Defines which of the face sides will be rendered - front, back or both.
- * Default is THREE.FrontSide. Other options are THREE.BackSide and THREE.DoubleSide.
- * @default THREE.FrontSide
- */
- side: Side;
- /**
- * Defines which of the face sides will cast shadows. Default is *null*.
- * If *null*, the value is opposite that of side, above.
- * @default null
- */
- shadowSide: Side;
- /**
- * Defines whether this material is tone mapped according to the renderer's toneMapping setting.
- * Default is true.
- * @default true
- */
- toneMapped: boolean;
- /**
- * Defines whether this material is transparent. This has an effect on rendering as transparent objects need special treatment and are rendered after non-transparent objects.
- * When set to true, the extent to which the material is transparent is controlled by setting it's .opacity property.
- * Default is false.
- * @default false
- */
- transparent: boolean;
- /**
- * Value is the string 'Material'. This shouldn't be changed, and can be used to find all objects of this type in a scene.
- * @default 'Material'
- */
- type: string;
- /**
- * UUID of this material instance. This gets automatically assigned, so this shouldn't be edited.
- */
- uuid: string;
- /**
- * Defines whether vertex coloring is used. Default is false.
- * @default false
- */
- vertexColors: boolean;
- /**
- * Defines whether this material is visible. Default is true.
- * @default true
- */
- visible: boolean;
- /**
- * An object that can be used to store custom data about the Material. It should not hold references to functions as these will not be cloned.
- * @default {}
- */
- userData: any;
- /**
- * This starts at 0 and counts how many times .needsUpdate is set to true.
- * @default 0
- */
- version: number;
- /**
- * Return a new material with the same parameters as this material.
- */
- clone(): Material;
- /**
- * Copy the parameters from the passed material into this material.
- * @param material
- */
- copy( material: Material ): this;
- /**
- * This disposes the material. Textures of a material don't get disposed. These needs to be disposed by {@link Texture}.
- */
- dispose(): void;
- /**
- * An optional callback that is executed immediately before the shader program is compiled. This function is called with the shader source code as a parameter. Useful for the modification of built-in materials.
- * @param shader Source code of the shader
- * @param renderer WebGLRenderer Context that is initializing the material
- */
- onBeforeCompile ( shader : Shader, renderer : WebGLRenderer ) : void;
- /**
- * In case onBeforeCompile is used, this callback can be used to identify values of settings used in onBeforeCompile, so three.js can reuse a cached shader or recompile the shader as needed.
- */
- customProgramCacheKey(): string;
- /**
- * Sets the properties based on the values.
- * @param values A container with parameters.
- */
- setValues( values: MaterialParameters ): void;
- /**
- * Convert the material to three.js JSON format.
- * @param meta Object containing metadata such as textures or images for the material.
- */
- toJSON( meta?: any ): any;
- }
|