threepipe
Version:
A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.
79 lines (65 loc) • 2.78 kB
text/typescript
import {Color, ColorRepresentation, HemisphereLight, Vector3} from 'three'
import {ILight, ILightEvent} from './ILight'
import {iLightCommons} from '../object/iLightCommons'
import {IObject3D} from '../IObject'
import {uiColor, UiObjectConfig, uiPanelContainer, uiSlider, uiToggle, uiVector} from 'uiconfig.js'
import {onChange3} from 'ts-browser-helpers'
('Hemisphere Light')
export class HemisphereLight2 extends HemisphereLight implements ILight<undefined> {
assetType = 'light' as const
setDirty = iLightCommons.setDirty
refreshUi = iLightCommons.refreshUi
declare uiConfig: UiObjectConfig
readonly isHemisphereLight2 = true
('Enabled')
('setDirty')
declare visible: boolean
('Sky Color', (that: HemisphereLight2)=>({onChange: ()=>that.setDirty()}))
declare color: Color
('Ground Color', (that: HemisphereLight2)=>({onChange: ()=>that.setDirty()}))
declare groundColor: Color
('Intensity', [0, 30], 0.01)
('setDirty')
declare intensity: number
('Position', undefined, undefined, (that: HemisphereLight2)=>({onChange: ()=>that.setDirty()}))
declare readonly position: Vector3
constructor(skyColor?: ColorRepresentation, groundColor?: ColorRepresentation, intensity?: number) {
super(skyColor, groundColor, intensity)
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: HemisphereLight|IObject3D, recursive?: boolean, ...args: any[]) => this
clone: (recursive?: boolean) => this
remove: (...object: IObject3D[]) => this
dispatchEvent: (event: ILightEvent) => void
declare parent: null
declare children: IObject3D[]
// endregion
}