From 12ae8adca6d3d707e75706dbcdf4e3e96f8f04d1 Mon Sep 17 00:00:00 2001 From: spatialfree Date: Sat, 21 Dec 2024 09:36:15 -0500 Subject: [PATCH] delta bool particle state --- src/VFX.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/VFX.cs b/src/VFX.cs index 10e6cc6..310f539 100644 --- a/src/VFX.cs +++ b/src/VFX.cs @@ -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;