vfx particle type
This commit is contained in:
parent
19b75c3cce
commit
00c230b6d7
1 changed files with 24 additions and 0 deletions
24
src/VFX.cs
Normal file
24
src/VFX.cs
Normal file
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue