/// <summary> /// The constructor of the node shape, just takes the node name /// </summary> /// <param name="name">Name of the shape in the shape tree</param> public UIShapeTextInput(string name) : base(name) { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Text.png"); UIProperties = UIManager.CreateCollection(this, "VUINodeTextInput"); SizeX = 500; SizeY = 100; Order = 3; // Base render order }
public UIShapeRotator(string name) : base(name) { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); UIProperties = UIManager.CreateCollection(this, "VUINodeRotator"); SizeX = 500; SizeY = 200; Order = 4; // Base render order }
public UIShapeNumericUpDown(string name) : base(name) { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); UIProperties = UIManager.CreateCollection(this, "VUINodeNumericUpDown"); SizeX = 200; SizeY = 100; Order = 6; // Base render order }
/// <summary> /// The constructor of the node shape, just takes the node name /// </summary> /// <param name="name">Name of the shape in the shape tree</param> public UIShapeSliderControl(string name) : base(name) { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Text.png"); UIProperties = UIManager.CreateCollection(this, "VUINodeSliderControl"); }
/// <summary> /// Constructor /// </summary> public SliderControlShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Text.png"); }
/// <summary> /// Constructor /// </summary> public TextLabelShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Text.png"); }
/// <summary> /// Constructor /// </summary> public RotatorShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); }
/// <summary> /// Constructor /// </summary> public NumericUpDownShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); }
/// <summary> /// Constructor /// </summary> public UIShapeDraggingButtonCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); }
/// <summary> /// Constructor /// </summary> public PushColorButtonShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); }
public override int GetIconIndex() { return(UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Dialog.png")); }
/// <summary> /// Constructor /// </summary> public DialogShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Dialog.png"); CategoryIconIndex = IconIndex; }
/// <summary> /// Constructor /// </summary> public ModelPreviewShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Button.png"); }
/// <summary> /// The constructor of the node shape, just takes the node name /// </summary> /// <param name="name">Name of the shape in the shape tree</param> public UIShapeImage(string name) : base(name) { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Image.png"); UIProperties = UIManager.CreateCollection(this, "VUINodeImage"); }
/// <summary> /// Constructor /// </summary> public ImageShapeCreator() { IconIndex = UIShapeBase.GetIconIndex("UIEditorPlugin.Icons.Image.png"); }