-
-
Save mindryu/80aaa341651d2aab4c46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
public class AutoSnap : EditorWindow | |
{ | |
private Vector3 prevPosition; | |
private bool doSnap = true; | |
private float snapValue = 1; | |
[MenuItem( "Edit/Auto Snap %_l" )] | |
static void Init() | |
{ | |
var window = (AutoSnap)EditorWindow.GetWindow( typeof( AutoSnap ) ); | |
window.maxSize = new Vector2( 200, 100 ); | |
} | |
public void OnGUI() | |
{ | |
doSnap = EditorGUILayout.Toggle( "Auto Snap", doSnap ); | |
snapValue = EditorGUILayout.FloatField( "Snap Value", snapValue ); | |
} | |
public void Update() | |
{ | |
if ( doSnap | |
&& !EditorApplication.isPlaying | |
&& Selection.transforms.Length > 0 | |
&& Selection.transforms[0].position != prevPosition ) | |
{ | |
Snap(); | |
prevPosition = Selection.transforms[0].position; | |
} | |
} | |
private void Snap() | |
{ | |
foreach ( var transform in Selection.transforms ) | |
{ | |
var t = transform.position; | |
t.x = Round( t.x ); | |
t.y = Round( t.y ); | |
t.z = Round( t.z ); | |
transform.transform.position = t; | |
} | |
} | |
private float Round( float input ) | |
{ | |
return snapValue * Mathf.Round( ( input / snapValue ) ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why "transform.transform.position" ?