source: OniSplit/Particles/EmitterFlags.cs@ 1185

Last change on this file since 1185 was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 483 bytes
Line 
1using System;
2
3namespace 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}
Note: See TracBrowser for help on using the repository browser.