123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import * as React from "react";
- import { Mesh, Observable } from "babylonjs";
- import { PropertyChangedEvent } from "../../../../propertyChangedEvent";
- import { LineContainerComponent } from "../../../lineContainerComponent";
- import { TextLineComponent } from "../../../lines/textLineComponent";
- import { CheckBoxLineComponent } from "../../../lines/checkBoxLineComponent";
- import { Vector3LineComponent } from "../../../lines/vector3LineComponent";
- import { SliderLineComponent } from "../../../lines/sliderLineComponent";
- interface IMeshPropertyGridComponentProps {
- mesh: Mesh,
- onSelectionChangeObservable?: Observable<any>,
- onPropertyChangedObservable?: Observable<PropertyChangedEvent>
- }
- export class MeshPropertyGridComponent extends React.Component<IMeshPropertyGridComponentProps, { paintNormals: boolean }> {
- constructor(props: IMeshPropertyGridComponentProps) {
- super(props);
- this.state = { paintNormals: false }
- }
- paintNormals() {
- const mesh = this.props.mesh;
- const scene = mesh.getScene();
- if (!mesh.material) {
- return;
- }
- if (mesh.material.getClassName() === "NormalMaterial") {
- mesh.material.dispose();
- mesh.material = mesh.metadata.originalMaterial;
- mesh.metadata.originalMaterial = null;
- this.setState({ paintNormals: false });
- } else {
- if (!(BABYLON as any).NormalMaterial) {
- this.setState({ paintNormals: true });
- BABYLON.Tools.LoadScript("https://preview.babylonjs.com/materialsLibrary/babylonjs.materials.js", () => {
- this.paintNormals();
- });
- return;
- }
- if (!mesh.metadata) {
- mesh.metadata = {};
- }
- mesh.metadata.originalMaterial = mesh.material;
- const normalMaterial = new (BABYLON as any).NormalMaterial("normalMaterial", scene);
- normalMaterial.disableLighting = true;
- normalMaterial.sideOrientation = mesh.material.sideOrientation;
- normalMaterial.metadata = { hidden: true };
- mesh.material = normalMaterial;
- this.setState({ paintNormals: true });
- }
- }
- onMaterialLink() {
- if (!this.props.onSelectionChangeObservable) {
- return;
- }
- const mesh = this.props.mesh;
- this.props.onSelectionChangeObservable.notifyObservers(mesh.material)
- }
- render() {
- const mesh = this.props.mesh;
- const scene = mesh.getScene();
- const paintNormals = mesh.material != null && mesh.material.getClassName() === "NormalMaterial";
- return (
- <div className="pane">
- <LineContainerComponent title="GENERAL">
- <TextLineComponent label="ID" value={mesh.id} />
- <TextLineComponent label="Unique ID" value={mesh.uniqueId.toString()} />
- <TextLineComponent label="Class" value={mesh.getClassName()} />
- <TextLineComponent label="Vertices" value={mesh.getTotalVertices().toString()} />
- <TextLineComponent label="Faces" value={(mesh.getTotalIndices() / 3).toFixed(0)} />
- <TextLineComponent label="Sub-meshes" value={mesh.subMeshes ? mesh.subMeshes.length.toString() : "0"} />
- <TextLineComponent label="Has skeleton" value={mesh.skeleton ? "Yes" : "No"} />
- <CheckBoxLineComponent label="IsEnabled" isSelected={() => mesh.isEnabled()} onSelect={(value) => mesh.setEnabled(value)} />
- <CheckBoxLineComponent label="IsPickable" target={mesh} propertyName="isPickable" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- {
- mesh.material &&
- <TextLineComponent label="Material" value={mesh.material.name} onLink={() => this.onMaterialLink()} />
- }
- </LineContainerComponent>
- <LineContainerComponent title="TRANSFORMS">
- <Vector3LineComponent label="Position" target={mesh} propertyName="position" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <Vector3LineComponent label="Rotation" target={mesh} propertyName="rotation" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <Vector3LineComponent label="Scaling" target={mesh} propertyName="scaling" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- </LineContainerComponent>
- <LineContainerComponent title="DISPLAY" closed={true}>
- <SliderLineComponent label="Visibility" target={mesh} propertyName="visibility" minimum={0} maximum={1} step={0.01} onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Receive shadows" target={mesh} propertyName="receiveShadows" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- {
- mesh.isVerticesDataPresent(BABYLON.VertexBuffer.ColorKind) &&
- <CheckBoxLineComponent label="Use vertex colors" target={mesh} propertyName="useVertexColors" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- }
- {
- scene.fogMode !== BABYLON.Scene.FOGMODE_NONE &&
- <CheckBoxLineComponent label="Apply fog" target={mesh} propertyName="applyFog" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- }
- {
- !mesh.parent &&
- <CheckBoxLineComponent label="Infinite distance" target={mesh} propertyName="infiniteDistance" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- }
- </LineContainerComponent>
- <LineContainerComponent title="ADVANCED" closed={true}>
- {
- mesh.useBones &&
- <CheckBoxLineComponent label="Compute bones using shaders" target={mesh} propertyName="computeBonesUsingShaders" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- }
- <CheckBoxLineComponent label="Collisions" target={mesh} propertyName="checkCollisions" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <TextLineComponent label="Has normals" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.NormalKind) ? "Yes" : "No"} />
- <TextLineComponent label="Has vertex colors" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.ColorKind) ? "Yes" : "No"} />
- <TextLineComponent label="has UV set 0" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.UVKind) ? "Yes" : "No"} />
- <TextLineComponent label="has UV set 1" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.UV2Kind) ? "Yes" : "No"} />
- <TextLineComponent label="has UV set 2" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.UV3Kind) ? "Yes" : "No"} />
- <TextLineComponent label="has UV set 3" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.UV4Kind) ? "Yes" : "No"} />
- <TextLineComponent label="has tangents" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.TangentKind) ? "Yes" : "No"} />
- <TextLineComponent label="has matrix weights" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.MatricesWeightsKind) ? "Yes" : "No"} />
- <TextLineComponent label="has matrix indices" value={mesh.isVerticesDataPresent(BABYLON.VertexBuffer.MatricesIndicesKind) ? "Yes" : "No"} />
- </LineContainerComponent>
- <LineContainerComponent title="DEBUG" closed={true}>
- <CheckBoxLineComponent label="Show bounding box" target={mesh} propertyName="showBoundingBox" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Paint normals" isSelected={() => paintNormals} onSelect={() => this.paintNormals()} />
- </LineContainerComponent>
- </div>
- );
- }
- }
|