mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Particles.Modifiers.Containers
|
|
{
|
|
public class RectangleLoopContainerModifier : IModifier
|
|
{
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
|
|
public unsafe void Update(float elapsedSeconds, ParticleBuffer.ParticleIterator iterator)
|
|
{
|
|
while (iterator.HasNext)
|
|
{
|
|
var particle = iterator.Next();
|
|
var left = particle->TriggerPos.X + Width*-0.5f;
|
|
var right = particle->TriggerPos.X + Width*0.5f;
|
|
var top = particle->TriggerPos.Y + Height*-0.5f;
|
|
var bottom = particle->TriggerPos.Y + Height*0.5f;
|
|
|
|
var xPos = particle->Position.X;
|
|
var yPos = particle->Position.Y;
|
|
|
|
if ((int) particle->Position.X < left)
|
|
xPos = particle->Position.X + Width;
|
|
else
|
|
{
|
|
if ((int) particle->Position.X > right)
|
|
xPos = particle->Position.X - Width;
|
|
}
|
|
|
|
if ((int) particle->Position.Y < top)
|
|
yPos = particle->Position.Y + Height;
|
|
else
|
|
{
|
|
if ((int) particle->Position.Y > bottom)
|
|
yPos = particle->Position.Y - Height;
|
|
}
|
|
particle->Position = new Vector2(xPos, yPos);
|
|
}
|
|
}
|
|
}
|
|
} |