UnityEditor.SnapGuide.SnapGuide C# (CSharp) Method

SnapGuide() public method

public SnapGuide ( float value, bool safe ) : System
value float
safe bool
return System
        public SnapGuide(float value, bool safe, params Vector3[] vertices)
        {
            this.lineVertices = new List<Vector3>();
            this.safe = true;
            this.value = value;
            this.lineVertices.AddRange(vertices);
            this.safe = safe;
        }

Same methods

SnapGuide::SnapGuide ( float value ) : System