コード例 #1
0
 public void Draw(SpriteBatch spriteBatch, Vector2 Position)
 {
     if (!die)
     {
         this.GetSprite.Draw(Texture2DStorage.GetDownMovingRedGoriyaSpriteSheet(), spriteBatch, Position);
     }
     else
     {
         this.GetSprite.Draw(Texture2DStorage.GetDeathSpriteSheet(), spriteBatch, Position);
     }
 }
コード例 #2
0
 public void Draw(SpriteBatch spriteBatch, Vector2 Position)
 {
     if (!die)
     {
         this.GetSprite.Draw(Texture2DStorage.GetLeftMovingBlueOctorokSpriteSheet(), spriteBatch, Position);
     }
     else
     {
         this.GetSprite.Draw(Texture2DStorage.GetDeathSpriteSheet(), spriteBatch, Position);
     }
 }
コード例 #3
0
 public void Draw(SpriteBatch spriteBatch, Vector2 Position)
 {
     if (!die)
     {
         this.GetSprite.Draw(Texture2DStorage.GetRightMovingAquamentusSpriteSheet(), spriteBatch, Position);
     }
     else
     {
         this.GetSprite.Draw(Texture2DStorage.GetDeathSpriteSheet(), spriteBatch, Position);
     }
 }