Interface IBlendableProperty<T>
Interface for properties that can be blended
public interface IBlendableProperty<T>
Type Parameters
T
Properties
CurrentValue
Current value of the property
T CurrentValue { get; set; }
Property Value
- T
Methods
Lerp(T, T, float)
Linearly interpolates between two values
public static abstract T Lerp(T start, T end, float t)
Parameters
start
Tend
Tt
float
Returns
- T
Interpolated value