Files
animate/webGl/my-threejs-test/node_modules/three/examples/jsm/lights/IESSpotLight.js
2024-06-24 21:24:00 +12:00

26 lines
387 B
JavaScript

import { SpotLight } from 'three';
class IESSpotLight extends SpotLight {
constructor( color, intensity, distance, angle, penumbra, decay ) {
super( color, intensity, distance, angle, penumbra, decay );
this.iesMap = null;
}
copy( source, recursive ) {
super.copy( source, recursive );
this.iesMap = source.iesMap;
return this;
}
}
export default IESSpotLight;