// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Animation.IK
{
///
/// Enumerates the different solutions that can be used when an avatar with visible arms moves a hand farther than the
/// actual length of the arm.
///
public enum UxrArmOverExtendMode
{
///
/// Hand reach will be limited to what the actual arm length permits.
///
LimitHandReach,
///
/// Stretch the forearm.
///
ExtendForearm,
///
/// Stretch the upper arm.
///
ExtendUpperArm,
///
/// Stretch both the upper arm and forearm.
///
ExtendArm
}
}