AlphaTab.Rendering.Utils.BoundsLookup.FindBeat C# (CSharp) 메소드

FindBeat() 공개 메소드

public FindBeat ( Beat beat ) : BeatBounds
beat AlphaTab.Model.Beat
리턴 BeatBounds
        public BeatBounds FindBeat(Beat beat)
        {
            var id = beat.Id;
            if (_beatLookup.ContainsKey(id))
            {
                return _beatLookup[id];
            }
            return null;
        }