Exemplo n.º 1
0
 public GestureModule()
 {
     this.crouch = new PoseCrouch();
     this.handleft = new PoseHandLeft();
     this.handright = new PoseHandRight();
     this.lefthandup = new PoseLeftHandUp();
     this.righthandup = new PoseRightHandUp();
     this.poses.Add(crouch);
     this.poses.Add(handleft);
     this.poses.Add(handright);
     this.poses.Add(lefthandup);
     this.poses.Add(righthandup);
 }
Exemplo n.º 2
0
 public GestureModuleClass()
 {
     poses = new List<PoseList>();
     this.crouch = new PoseCrouch();
     this.handleft = new PoseHandLeft();
     this.handright = new PoseHandRight();
     this.lefthandup = new PoseLeftHandUp();
     this.righthandup = new PoseRightHandUp();
     this.poses.Add(crouch);
     this.poses.Add(handleft);
     this.poses.Add(handright);
     this.poses.Add(lefthandup);
     this.poses.Add(righthandup);
     //this.gestureCompleteArgs = new GestureCompletedArgs();
 }