本文整理汇总了C#中Microsoft.Xna.Framework.Graphics.Sprite.Fill方法的典型用法代码示例。如果您正苦于以下问题:C# Sprite.Fill方法的具体用法?C# Sprite.Fill怎么用?C# Sprite.Fill使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Xna.Framework.Graphics.Sprite
的用法示例。
在下文中一共展示了Sprite.Fill方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Wall
public Wall(Vector2 Position, int Width, int Height)
{
rect = new Rect(Width, Height, false);
rect.Position = Position;
rect.IgnoreGravity = true;
image = new Sprite(Position);
image.Texture = new Texture2D(XNAGame.I.GraphicsDevice, Width, Height);
image.Fill(Color.LimeGreen);
}
示例2: Particle
public Particle(ParticleEmitter Engine, Texture2D Image, Vector2 Position, Vector2 Velocity, int Life)
{
engine = Engine;
position = Position;
velocity = Velocity;
if (Life < 0) { life = 0; }
else { life = Life; }
image = new Sprite();
image.Position = Position;
if (Image == null)
{
image.Texture = new Texture2D(XNAGame.Instance.GraphicsDevice, 5, 5);
image.Fill(Color.White);
}
else
{ image.Texture = Image; }
}