RoboticArms/Library/PackageCache/com.unity.animation.rigging@68167b505d2b/Runtime/AnimationJobs/IWeightedAnimationJob.cs
2025-11-17 15:16:36 +07:00

12 lines
379 B
C#

namespace UnityEngine.Animations.Rigging
{
/// <summary>
/// This interface represents an animation job with a weight value.
/// </summary>
public interface IWeightedAnimationJob : IAnimationJob
{
/// <summary>The main weight given to the constraint. This is a value in between 0 and 1.</summary>
FloatProperty jobWeight { get; set; }
}
}