UnityEditor.SnapGuideCollection.DrawGuides C# (CSharp) Method

DrawGuides() public method

public DrawGuides ( ) : void
return void
        public void DrawGuides()
        {
            if (this.currentGuides != null)
            {
                foreach (SnapGuide guide in this.currentGuides)
                {
                    guide.Draw();
                }
            }
        }