mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
Add ImAnim bindings
This commit is contained in:
parent
e8485dee25
commit
2b5e2893c5
43 changed files with 4852 additions and 3 deletions
19
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimPolicy.cs
Normal file
19
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimPolicy.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
namespace Dalamud.Bindings.ImAnim;
|
||||
|
||||
public enum ImAnimPolicy
|
||||
{
|
||||
/// <summary>
|
||||
/// smooth into new target
|
||||
/// </summary>
|
||||
Crossfade,
|
||||
|
||||
/// <summary>
|
||||
/// snap to target
|
||||
/// </summary>
|
||||
Cut,
|
||||
|
||||
/// <summary>
|
||||
/// queue one pending target
|
||||
/// </summary>
|
||||
Queue,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue