Files
dungeons/Assets/UltimateXR/Runtime/Scripts/Animation/IK/UxrCcdIKSolver.IterationResult.cs
2024-08-06 21:58:35 +02:00

35 lines
1.1 KiB
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UxrCcdIKSolver.IterationResult.cs" company="VRMADA">
// Copyright (c) VRMADA, All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Animation.IK
{
public partial class UxrCcdIKSolver
{
#region Private Types & Data
/// <summary>
/// Result of the CCD algorithm iteration
/// </summary>
private enum IterationResult
{
/// <summary>
/// The effector has reached the goal.
/// </summary>
GoalReached,
/// <summary>
/// The effector is still trying to reach the goal.
/// </summary>
ReachingGoal,
/// <summary>
/// There was an error and no links were rotated in order to reach the goal.
/// </summary>
Error,
}
#endregion
}
}