PowerBar.IncreaseFill C# (CSharp) Method

IncreaseFill() private method

private IncreaseFill ( ) : void
return void
    private void IncreaseFill()
    {
        if(Mathf.Abs(targetSectionNumber + 1) <= range){
            fill += fillRate;
            targetSectionNumber ++;
        }
    }