예제 #1
0
파일: Wheel.cs 프로젝트: r2d2m/crea_besiege
    public override void Setup(string json)
    {
        base.Setup(json);

        var seed = WheelSeed.FromJson(json);

        Join(this.LinkedBlock, seed.rotationAxis);
        SubscribeToInputEvents();
    }
예제 #2
0
파일: Wheel.cs 프로젝트: r2d2m/crea_besiege
 public WheelSeed(WheelSeed other)
 {
     this.type         = other.type;
     this.rotationAxis = other.rotationAxis;
 }