From 00c230b6d753562d905fe4a28a869603fd5cc058 Mon Sep 17 00:00:00 2001 From: spatialfree Date: Sun, 24 Nov 2024 13:17:07 -0500 Subject: [PATCH] vfx particle type --- src/VFX.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/VFX.cs diff --git a/src/VFX.cs b/src/VFX.cs new file mode 100644 index 0000000..ef89ded --- /dev/null +++ b/src/VFX.cs @@ -0,0 +1,24 @@ +using StereoKit; +using System; + +namespace snake; + +static class VFX +{ + +} + +public class Particle +{ + public Vec3 pos, vel; + public Quat ori; + public float scl; + + public Particle() + { + this.pos = Vec3.Zero; + this.vel = Vec3.Zero; + this.ori = Quat.Identity; + this.scl = 0.0f; + } +} \ No newline at end of file