Esempio n. 1
0
    public override void Setup(string json)
    {
        base.Setup(json);

        var seed = VehicleLeafSeed.FromJson(json);

        var block = this.Vehicle.GetChildFromID <Block>(seed.linkedId);

        this.linkedBlock = block;
    }
Esempio n. 2
0
 public BoosterSeed(VehicleLeafSeed parent) : base(parent)
 {
     this.type = Type;
 }
Esempio n. 3
0
 public VehicleLeafSeed(VehicleLeafSeed other) : base(other)
 {
     this.linkedId = other.linkedId;
 }
Esempio n. 4
0
 public WheelSeed(VehicleLeafSeed parent) : base(parent)
 {
     this.type = Type;
 }