Example #1
0
    public override void Setup(string json)
    {
        base.Setup(json);

        var seed = WheelSeed.FromJson(json);

        Join(this.LinkedBlock, seed.rotationAxis);
        SubscribeToInputEvents();
    }
Example #2
0
 public WheelSeed(WheelSeed other)
 {
     this.type         = other.type;
     this.rotationAxis = other.rotationAxis;
 }