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