namespace GTweens.Enums
{
///
/// Specifies different rotation modes for tweening operations.
///
public enum RotationMode
{
///
/// Rotates objects using the shortest distance between the initial and final angles.
///
ShortestDistance,
///
/// Rotates objects based on the total angular distance, which may involve multiple rotations.
///
TotalDistance,
}
}