LeviLamina
Loading...
Searching...
No Matches
WidgetGizmoEventType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Widgets {
6
7enum class WidgetGizmoEventType : int {
8 OriginActivated = 0,
9 OriginGrabbed = 1,
10 OriginMoved = 2,
11 OriginReleased = 3,
12 OriginDeactivated = 4,
13 CornerGrabbed = 5,
14 CornerMoved = 6,
15 CornerReleased = 7,
16};
17
18}