Example #1
0
 public void Kill(PaperState state)
 {
     /*TO indicate different stage of the paper*/
     if (this.state != PaperState.FLYING)
     {
         return;
     }
     this.state = state;
     if (state == PaperState.MISS)
     {
         this.age = 200;
     }
     else if(state == PaperState.HIT)
     {
         //Replace texture to paper break
         texture = paperBreak;
         totalFrame = 5;
         frame = 0;
         height = texture.Height;
         widthPerFrame = texture.Width / totalFrame;
         count = 0;
         RefreshSpeed = 5;
         velocity = Vector2.Zero;
     }
 }
Example #2
0
 public Paper(Texture2D texture, Texture2D breakTexture, Vector2 position, Vector2 velocity, int speed, int damage)
     : base(texture, position)
 {
     this.rotation = rotation;
     this.damage = damage;
     this.paperBreak = breakTexture;
     this.speed = speed;
     this.state = PaperState.FLYING;
     this.velocity = velocity * speed;
 }
Example #3
0
 public Paper(Texture2D texture,Texture2D breakTexture, Vector2 position, float rotation, int speed, int damage)
     : base(texture, position)
 {
     this.state = PaperState.FLYING;
     this.rotation = rotation;
     this.damage = damage;
     this.textureBound = new Rectangle(0, 0, texture.Width / 4, texture.Height);
     this.speed = speed;
     this.paperBreak = breakTexture;
     velocity = Vector2.Transform(new Vector2(0, -speed),
         Matrix.CreateRotationZ(rotation));
 }