Example #1
0
    public CameraFsm()
        : base()
    {
        onlyInstance = this;

        Start();

        SwapState(new InitState(this));
    }
Example #2
0
 public InitState(CameraFsm parent)
     : base(parent)
 {
     this.parent = parent;
 }
Example #3
0
 public GamePlayState(CameraFsm parent)
     : base(parent)
 {
     this.parent = parent;
 }
Example #4
0
 public SelectPlayerState(CameraFsm parent)
     : base(parent)
 {
     this.parent = parent;
 }