コード例 #1
0
ファイル: State.cs プロジェクト: guozanhua/KINECT
 public void setType(Constants.stateType type)
 {
     this.type = type;
 }
コード例 #2
0
ファイル: State.cs プロジェクト: dianatatu/KINECT
 public void setType(Constants.stateType type)
 {
     this.type = type;
 }
コード例 #3
0
ファイル: State.cs プロジェクト: guozanhua/KINECT
 public State(Constants.stateType _type, String _motion)
 {
     this.type = _type;
     transitions = new Dictionary<String, Transition>();
     this.motion = _motion;
 }
コード例 #4
0
ファイル: State.cs プロジェクト: dianatatu/KINECT
 public State(Constants.stateType _type, String _motion)
 {
     this.type   = _type;
     transitions = new Dictionary <String, Transition>();
     this.motion = _motion;
 }