propertyComponentProps.ts 279 B

12345678
  1. import { GlobalState } from "../../globalState";
  2. import { NodeMaterialBlock } from 'babylonjs/Materials/Node/nodeMaterialBlock';
  3. export interface IPropertyComponentProps {
  4. globalState: GlobalState;
  5. block: NodeMaterialBlock;
  6. guiBlock?: BABYLON.GUI.Container;
  7. }