System.Collections.Generic.HashSet.Contains(TimelineItemGUI)

Here are the examples of the csharp api System.Collections.Generic.HashSet.Contains(TimelineItemGUI) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : MoveItemHandler.cs
with MIT License
from chstetco

public bool ShouldSnapTo(ISnappable snappable)
        {
            var itemGUI = snappable as TimelineItemGUI;
            return itemGUI != null && !m_ItemGUIs.Contains(itemGUI);
        }