AudioEvents.GetValueAtTime C# (CSharp) Method

GetValueAtTime() public method

public GetValueAtTime ( int curve, float time ) : float
curve int
time float
return float
    public float GetValueAtTime(int curve, float time)
    {
        int startIndex = BinarySearchFirstPoint(curve, time);
        return BinarySearchCurveValue(curve, startIndex, time);
    }

Same methods

AudioEvents::GetValueAtTime ( string curve, float time ) : float