Exemplo n.º 1
0
 public SideElementTool(Editor editor, SideElementType elementType, string name = "SideTool", bool enableCapacity = false)
 {
     _editor = editor;
     _elementType = elementType;
     _enableCapacity = enableCapacity;
     Name = name;
     Capacity = 3;
     GUIConfiguration = BuildGUIConfiguration();
 }
Exemplo n.º 2
0
 public void SetSide(Direction side, SideElementType value)
 {
     GetSideElement(side).Type = value;
 }
Exemplo n.º 3
0
 public void Set(SideElementType value)
 {
     Segment.SetSide(Side, value);
 }
Exemplo n.º 4
0
 public SideElement(SideElementType type = SideElementType.NONE)
 {
     Type = type;
 }