VertexNavigation.increaseArraySize C# (CSharp) Method

increaseArraySize() private method

Increases the size of the plans array.
private increaseArraySize ( int indices ) : void
indices int Indices.
return void
    private void increaseArraySize(int[] indices)
    {
        int maxIndex = Mathf.Max(indices);
        while (maxIndex >= this.movementLookup.Count)
        {
            this.movementLookup.Add(null);
        }
    }