|
@@ -7,11 +7,16 @@ import { LightPropertyTabComponent } from './properties/lightPropertyTabComponen
|
|
import { LightInformationPropertyTabComponent } from './properties/lightInformationPropertyTabComponent';
|
|
import { LightInformationPropertyTabComponent } from './properties/lightInformationPropertyTabComponent';
|
|
import { TexturePropertyTabComponent } from './properties/texturePropertyTabComponent';
|
|
import { TexturePropertyTabComponent } from './properties/texturePropertyTabComponent';
|
|
import { TrigonometryPropertyTabComponent } from './properties/trigonometryNodePropertyComponent';
|
|
import { TrigonometryPropertyTabComponent } from './properties/trigonometryNodePropertyComponent';
|
|
|
|
+import { ButtonPropertyTabComponent } from './properties/buttonGuiPropertyComponent copy';
|
|
|
|
|
|
export class PropertyLedger {
|
|
export class PropertyLedger {
|
|
public static RegisteredControls: {[key: string] : ComponentClass<IPropertyComponentProps>} = {};
|
|
public static RegisteredControls: {[key: string] : ComponentClass<IPropertyComponentProps>} = {};
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+export class PropertyGuiLedger {
|
|
|
|
+ public static RegisteredControls: {[key: string] : ComponentClass<IPropertyComponentProps>} = {};
|
|
|
|
+}
|
|
|
|
+
|
|
PropertyLedger.RegisteredControls["TransformBlock"] = TransformPropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["TransformBlock"] = TransformPropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["InputBlock"] = InputPropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["InputBlock"] = InputPropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["GradientBlock"] = GradientPropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["GradientBlock"] = GradientPropertyTabComponent;
|
|
@@ -23,4 +28,7 @@ PropertyLedger.RegisteredControls["ReflectionBlock"] = TexturePropertyTabCompone
|
|
PropertyLedger.RegisteredControls["RefractionBlock"] = TexturePropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["RefractionBlock"] = TexturePropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["CurrentScreenBlock"] = TexturePropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["CurrentScreenBlock"] = TexturePropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["ParticleTextureBlock"] = TexturePropertyTabComponent;
|
|
PropertyLedger.RegisteredControls["ParticleTextureBlock"] = TexturePropertyTabComponent;
|
|
-PropertyLedger.RegisteredControls["TrigonometryBlock"] = TrigonometryPropertyTabComponent;
|
|
|
|
|
|
+PropertyLedger.RegisteredControls["TrigonometryBlock"] = TrigonometryPropertyTabComponent;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+PropertyGuiLedger.RegisteredControls["Button"] = ButtonPropertyTabComponent;
|