mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
14 lines
423 B
C#
14 lines
423 B
C#
namespace MonoGame.Extended.Particles.Modifiers
|
|
{
|
|
public sealed class OpacityFastFadeModifier : Modifier
|
|
{
|
|
public override unsafe void Update(float elapsedSeconds, ParticleBuffer.ParticleIterator iterator)
|
|
{
|
|
while (iterator.HasNext)
|
|
{
|
|
var particle = iterator.Next();
|
|
particle->Opacity = 1.0f - particle->Age;
|
|
}
|
|
}
|
|
}
|
|
} |