1234567891011121314151617181920212223242526272829303132 |
- import * as React from "react";
- import { Light, Observable } from "babylonjs";
- import { PropertyChangedEvent } from "../../../../propertyChangedEvent";
- import { LineContainerComponent } from "../../../lineContainerComponent";
- import { FloatLineComponent } from "../../../lines/floatLineComponent";
- import { TextLineComponent } from "../../../lines/textLineComponent";
- import { LockObject } from "../lockObject";
- interface ICommonLightPropertyGridComponentProps {
- light: Light,
- lockObject: LockObject,
- onPropertyChangedObservable?: Observable<PropertyChangedEvent>
- }
- export class CommonLightPropertyGridComponent extends React.Component<ICommonLightPropertyGridComponentProps> {
- constructor(props: ICommonLightPropertyGridComponentProps) {
- super(props);
- }
- render() {
- const light = this.props.light;
- return (
- <LineContainerComponent title="GENERAL">
- <TextLineComponent label="ID" value={light.id} />
- <TextLineComponent label="Unique ID" value={light.uniqueId.toString()} />
- <TextLineComponent label="Class" value={light.getClassName()} />
- <FloatLineComponent lockObject={this.props.lockObject} label="Intensity" target={light} propertyName="intensity" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- </LineContainerComponent>
- );
- }
- }
|