Revision: | 1114 |
Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen |
File size: | 515 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.Motoko |
4 | { |
5 | [Flags] |
6 | internal enum TextureFlags |
7 | { |
8 | None = 0x0000, |
9 | HasMipMaps = 0x0001, |
10 | NoUWrap = 0x0004, |
11 | NoVWrap = 0x0008, |
12 | AnimPingPong = 0x0040, |
13 | AnimRandom = 0x0080, |
14 | AnimGlobalTime = 0x0100, |
15 | HasEnvMap = 0x0200, |
16 | AdditiveBlend = 0x0400, |
17 | SwapBytes = 0x1000, |
18 | AnimLoop = 0x4000, |
19 | Shield = 0x8000, |
20 | Invisibility = 0x10000, |
21 | Daodan = 0x20000 |
22 | } |
23 | } |