mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 07:45:33 +00:00
18 lines
521 B
C#
18 lines
521 B
C#
|
|
namespace GTweens.Enums
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Specifies different rotation modes for tweening operations.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum RotationMode
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Rotates objects using the shortest distance between the initial and final angles.
|
|||
|
|
/// </summary>
|
|||
|
|
ShortestDistance,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Rotates objects based on the total angular distance, which may involve multiple rotations.
|
|||
|
|
/// </summary>
|
|||
|
|
TotalDistance,
|
|||
|
|
}
|
|||
|
|
}
|