UNPKG

awayjs-display

Version:
49 lines (36 loc) 1.35 kB
import ImageCube from "awayjs-core/lib/image/ImageCube"; import SamplerCube from "awayjs-core/lib/image/SamplerCube"; import Matrix3D from "awayjs-core/lib/geom/Matrix3D"; import Vector3D from "awayjs-core/lib/geom/Vector3D"; import ErrorBase from "awayjs-core/lib/errors/ErrorBase"; import LightBase from "../display/LightBase"; import BoundsType from "../bounds/BoundsType"; import Camera from "../display/Camera"; import IEntity from "../display/IEntity"; class LightProbe extends LightBase implements IEntity { public static assetType:string = "[light LightProbe]"; public diffuseMap:ImageCube; public diffuseSampler:SamplerCube = new SamplerCube(); public specularMap:ImageCube; public specularSampler:SamplerCube = new SamplerCube(); constructor(diffuseMap:ImageCube, specularMap:ImageCube = null) { super(); this._pIsEntity = true; this.diffuseMap = diffuseMap; this.specularMap = specularMap; //default bounds type this._boundsType = BoundsType.NULL; } public get assetType():string { return LightProbe.assetType; } //@override public iGetObjectProjectionMatrix(entity:IEntity, cameraTransform:Matrix3D, target:Matrix3D = null):Matrix3D { throw new ErrorBase("Object projection matrices are not supported for LightProbe objects!"); } } export default LightProbe;