mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
21 lines
451 B
C++
21 lines
451 B
C++
#pragma once
|
|
|
|
namespace NXKit {
|
|
|
|
enum UIViewAnimationOptions {
|
|
none = 0,
|
|
allowUserInteraction = 1 << 0,
|
|
beginFromCurrentState = 1 << 1,
|
|
curveEaseIn = 1 << 2,
|
|
curveEaseOut = 1 << 3,
|
|
curveEaseInOut = 1 << 4,
|
|
curveLinear = 1 << 5,
|
|
curveEaseOutElastic = 1 << 6,
|
|
customEaseOut = 1 << 9,
|
|
preferredFramesPerSecond30 = 1 << 12,
|
|
preferredFramesPerSecond60 = 1 << 13,
|
|
preferredFramesPerSecond120 = 1 << 14,
|
|
};
|
|
|
|
}
|