delta bool particle state

This commit is contained in:
ethan merchant 2024-12-21 09:36:15 -05:00
parent 705614909b
commit 12ae8adca6

View file

@ -57,12 +57,14 @@ static class VFX
public class Particle
{
public DeltaBool state;
public Vec3 pos, vel;
public Quat ori;
public float scl;
public Particle()
{
this.state = new(false);
this.pos = Vec3.Zero;
this.vel = Vec3.Zero;
this.ori = Quat.Identity;