Files
NXKit/UIKitCore/include/UIViewAnimationOptions.h
2025-03-27 09:00:23 +01:00

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,
};
}