| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import {Color, ColorRepresentation, Euler, SpotLight, SpotLightShadow, Vector3} from 'three'
- import {ILight, ILightEvent} from './ILight'
- import {iLightCommons} from '../object/iLightCommons'
- import {IObject3D} from '../IObject'
- import {uiColor, uiInput, UiObjectConfig, uiPanelContainer, uiSlider, uiToggle, uiVector} from 'uiconfig.js'
- import {onChange3} from 'ts-browser-helpers'
-
- @uiPanelContainer('Spot Light')
- export class SpotLight2 extends SpotLight implements ILight<SpotLightShadow> {
- assetType = 'light' as const
- setDirty = iLightCommons.setDirty
- refreshUi = iLightCommons.refreshUi
- uiConfig: UiObjectConfig
- readonly isSpotLight2 = true
-
- @uiToggle('Enabled')
- @onChange3('setDirty')
- visible: boolean
-
- @uiColor('Color', (that: SpotLight2)=>({onChange: ()=>that.setDirty()}))
- color: Color
- @uiSlider('Intensity', [0, 30], 0.01)
- @onChange3('setDirty')
- intensity: number
- @uiSlider('Angle', [0, 2], 0.01)
- @onChange3('setDirty')
- angle: number
- @uiSlider('Penumbra', [0, 0.9999], 0.01)
- @onChange3('setDirty')
- penumbra: number
- @uiInput('Distance')
- @onChange3('setDirty')
- distance: number
- @uiInput('Decay')
- @onChange3('setDirty')
- decay: number
- @uiVector('Position', undefined, undefined, (that: SpotLight2)=>({onChange: ()=>that.setDirty()}))
- readonly position: Vector3
- @uiVector('Rotation', undefined, undefined, (that: SpotLight2)=>({onChange: ()=>that.setDirty()}))
- readonly rotation: Euler
- @uiToggle('Cast Shadow')
- @onChange3('setDirty')
- castShadow: boolean
-
- constructor(color?: ColorRepresentation, intensity?: number, distance?: number,
- angle?: number,
- penumbra?: number,
- decay?: number) {
- super(color, intensity, distance, angle, penumbra, decay)
- this.target.position.set(0, 0, -1) // because of GLTF spec: https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_lights_punctual
- this.add(this.target) // todo: make sure the child isn't exported in gltf
- iLightCommons.upgradeLight.call(this)
- }
-
- autoScale() {
- console.warn('AutoScale not supported on Lights')
- return this
- }
-
- autoCenter() {
- console.warn('AutoCenter not supported on Lights')
- return this
- }
-
- /**
- * @deprecated use `this` instead
- */
- get lightObject(): this {
- return this
- }
-
- /**
- * @deprecated use `this` instead
- */
- get modelObject(): this {
- return this
- }
-
-
- // region inherited type fixes
- // re-declaring from IObject3D because: https://github.com/microsoft/TypeScript/issues/16936
-
- traverse: (callback: (object: IObject3D) => void) => void
- traverseVisible: (callback: (object: IObject3D) => void) => void
- traverseAncestors: (callback: (object: IObject3D) => void) => void
- getObjectById: <T extends IObject3D = IObject3D>(id: number) => T | undefined
- getObjectByName: <T extends IObject3D = IObject3D>(name: string) => T | undefined
- getObjectByProperty: <T extends IObject3D = IObject3D>(name: string, value: string) => T | undefined
- copy: (source: SpotLight|IObject3D, recursive?: boolean, ...args: any[]) => this
- clone: (recursive?: boolean) => this
- remove: (...object: IObject3D[]) => this
- dispatchEvent: (event: ILightEvent) => void
- parent: null
- children: IObject3D[]
-
- // endregion
-
- }
|