예제 #1
0
 /// <summary>
 /// Draws an animated sprite offset by the camera's position.
 /// </summary>
 /// <param name="sprite">The animated sprite to draw.</param>
 /// <param name="position">The position of the sprite.</param>
 /// <param name="rotation">The rotation of the sprite.</param>
 /// <param name="colour">The colour to draw the sprite in.</param>
 /// <param name="scale">The scale of the sprite.</param>
 /// <param name="effect">The effect to apply to the sprite before drawing.</param>
 /// <param name="layerDepth">The layer depth of the sprite.</param>
 public static void Draw(AnimatedSprite sprite, Vector2 position, float rotation, Color colour, float scale = 1.0f, SpriteEffects effect = SpriteEffects.None, float layerDepth = 1.0f)
 {
     if (layerDepth > 1.0f || Camera2D.drawSpace.Contains((int)position.X, (int)position.Y))
     {
         AnimatedSprite.Draw(sprite, position - ((1.0f / layerDepth) * Camera2D.offset), rotation, colour, scale, effect, 1.0f);
     }
 }
예제 #2
0
 /// <summary>
 /// Draws an animated sprite.
 /// </summary>
 /// <param name="sprite">The animated sprite to draw.</param>
 /// <param name="position">The position to draw the sprite at.</param>
 /// <param name="rotation">The rotation of the sprite.</param>
 /// <param name="colour">The colour to draw the sprite in.</param>
 /// <param name="scale">The scale to draw the sprite at.</param>
 /// <param name="effect">The effect to apply to the sprite before drawing.</param>
 /// <param name="layerDepth">The layer depth of the sprite.</param>
 public static void Draw(AnimatedSprite sprite, Vector2 position, float rotation, Color colour, float scale = 1.0f, SpriteEffects effect = SpriteEffects.None, float layerDepth = 1.0f)
 {
     sprite.SpriteBatch.Draw(sprite.Texture, position, sprite.sourceFrame, colour, rotation, sprite.Origin, scale, effect, layerDepth);
 }
예제 #3
0
 /// <summary>
 /// Draws an animated sprite offset by the camera's position.
 /// </summary>
 /// <param name="sprite">The animated sprite to draw.</param>
 /// <param name="position">The position of the sprite.</param>
 /// <param name="rotation">The rotation of the sprite.</param>
 public static void Draw(AnimatedSprite sprite, Vector2 position, float rotation)
 {
     if (Camera2D.drawSpace.Contains((int)position.X, (int)position.Y))
     {
         AnimatedSprite.Draw(sprite, position - Camera2D.offset, rotation);
     }
 }
예제 #4
0
 /// <summary>
 /// Draws an animated sprite.
 /// </summary>
 /// <param name="sprite">The animated sprite to draw.</param>
 /// <param name="position">The position to draw the sprite at.</param>
 /// <param name="rotation">The rotation of the sprite.</param>
 public static void Draw(AnimatedSprite sprite, Vector2 position, float rotation)
 {
     sprite.SpriteBatch.Draw(sprite.Texture, position, sprite.sourceFrame, sprite.Colour, rotation, sprite.Origin, 1.0f, SpriteEffects.None, 1.0f);
 }