mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-27 02:49:18 +01:00
Add ImAnim bindings
This commit is contained in:
parent
e8485dee25
commit
2b5e2893c5
43 changed files with 4852 additions and 3 deletions
29
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimRotationMode.cs
Normal file
29
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimRotationMode.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
namespace Dalamud.Bindings.ImAnim;
|
||||
|
||||
public enum ImAnimRotationMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Shortest path (default) - never rotates more than 180 degrees
|
||||
/// </summary>
|
||||
Shortest,
|
||||
|
||||
/// <summary>
|
||||
/// Longest path - always takes the long way around
|
||||
/// </summary>
|
||||
Longest,
|
||||
|
||||
/// <summary>
|
||||
/// Clockwise - always rotates clockwise (positive direction)
|
||||
/// </summary>
|
||||
Cw,
|
||||
|
||||
/// <summary>
|
||||
/// Counter-clockwise - always rotates counter-clockwise
|
||||
/// </summary>
|
||||
Ccw,
|
||||
|
||||
/// <summary>
|
||||
/// Direct lerp - no angle unwrapping, can cause spinning for large deltas
|
||||
/// </summary>
|
||||
Direct,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue