Motion Flags

From NFBSP

Jump to: navigation, search

C# Code

enum MotionFlags : int {
  Invalid = -1,
  None = 0,
  X = 0x00000001,
  Y = 0x00000002,	
  Z = 0x00000004,
  XR = 0x00000008,
  YR = 0x00000010,
  ZR = 0x00000020,
  LX = 0x00000040, // These three are for "linear movement."
  LY = 0x00000080,
  LZ = 0x00000100,
  AX = 0x00000200, // These six are for "automove" which is used only in v10.
  AY = 0x00000400,
  AZ = 0x00000800,
  AXR = 0x00001000,
  AYR = 0x00002000,
  AZR = 0x00004000,
}

See Also

Personal tools