Exemplo n.º 1
0
    public void Init(PartSlot slot, CustomizationHandler _handler)
    {
        Slot    = slot;
        handler = _handler;

        partTypeDisplay.text = Slot.PartType.ToString();
        partNameDisplay.text = Slot.Part != null ? Slot.Part.Name : "Empty";
    }
Exemplo n.º 2
0
 public SelectOtherItemsState(CustomizationHandler _handler) : base(_handler)
 {
 }
Exemplo n.º 3
0
 public CustomizationState(CustomizationHandler _handler)
 {
     handler = _handler;
 }
Exemplo n.º 4
0
 public void Init(PartSchematic schematic, CustomizationHandler _handler)
 {
     Part = schematic;
     partNameDisplay.text = Part != null ? Part.Name : "Empty";
     handler = _handler;
 }
 public SelectEquippedItemsState(CustomizationHandler _handler) : base(_handler)
 {
 }