aloe effect
This commit is contained in:
parent
de33b6bc15
commit
5a6eb151ae
7 changed files with 212 additions and 70 deletions
12
scripts/particles/MixedParticles.cs
Normal file
12
scripts/particles/MixedParticles.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Godot;
|
||||
|
||||
namespace Newlon.Particles;
|
||||
|
||||
public partial class MixedParticles : Node2D
|
||||
{
|
||||
[Export] private GpuParticles2D emitter;
|
||||
public override void _Ready()
|
||||
{
|
||||
emitter.Finished += ()=> { QueueFree(); };
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue