UnityEditor.SnapGuideCollection.DrawGuides C# (CSharp) 메소드

DrawGuides() 공개 메소드

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