mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-08 00:53:24 +00:00
13 lines
350 B
Haxe
13 lines
350 B
Haxe
package dts;
|
|
|
|
class ShapeFlags {
|
|
public static var UniformScale = 0;
|
|
public static var AlignedScale = 1;
|
|
public static var ArbitraryScale = 2;
|
|
public static var Blend = 4;
|
|
public static var Cyclic = 8;
|
|
public static var MakePath = 16;
|
|
public static var IflInit = 32;
|
|
public static var HasTranslucency = 64;
|
|
public static var AnyScale = 3;
|
|
}
|