Revision: | 1114 |
Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen |
File size: | 483 byte(s) |
Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. |
# | Content |
---|---|
1 | using System; |
2 | |
3 | namespace Oni.Particles |
4 | { |
5 | [Flags] |
6 | internal enum EmitterFlags |
7 | { |
8 | None = 0, |
9 | |
10 | InitiallyOn = 0x0001, |
11 | IncreaseParticleCount = 0x0002, |
12 | TurnOffAtTreshold = 0x0004, |
13 | |
14 | EmitWithParentVelocity = 0x0010, |
15 | Unknown0020 = 0x0020, |
16 | OrientToVelocity = 0x0040, |
17 | InheritTint = 0x0080, |
18 | |
19 | OnePerAttractor = 0x0100, |
20 | AtLeastOne = 0x0200, |
21 | CycleAttractors = 0x0400 |
22 | } |
23 | } |