AudioEvents.BinarySearchFirstPoint C# (CSharp) Method

BinarySearchFirstPoint() public method

public BinarySearchFirstPoint ( int curve, float time ) : int
curve int
time float
return int
    public int BinarySearchFirstPoint(int curve, float time)
    {
        return BinarySearchFirstPoint(curve, time, 0, curves[curve].list.Count-1);
    }

Same methods

AudioEvents::BinarySearchFirstPoint ( int curve, float time, int lPointIndex, int rPointIndex ) : int