SupaLidlGame/Extensions/Particles2D.cs

15 lines
297 B
C#
Raw Normal View History

2023-06-13 02:55:30 -07:00
using Godot;
namespace SupaLidlGame.Extensions;
public static class Particles2D
{
public static void EmitOneShot(this GpuParticles2D particles)
{
particles.GetTree().CreateTimer(particles.Lifetime).Timeout += () =>
{
particles.QueueFree();
};
}
}