Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
393 B

namespace ImGuizmoNET
{
public enum OPERATION
{
TRANSLATE_X = 1,
TRANSLATE_Y = 2,
TRANSLATE_Z = 4,
ROTATE_X = 8,
ROTATE_Y = 16,
ROTATE_Z = 32,
ROTATE_SCREEN = 64,
SCALE_X = 128,
SCALE_Y = 256,
SCALE_Z = 512,
BOUNDS = 1024,
TRANSLATE = 7,
ROTATE = 120,
SCALE = 896,
}
}