Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Closelabel | Label to show above the toggled controls. |
toggle | Enabled state of the toggle group. |
bool The enabled state selected by the user.
Begin a vertical group with a toggle to enable or disable all the controls within at once.
See Also: EndToggleGroup.
Align position/rotation/scale of the selected GameObjects.
// Simple script that lets you align GameObjects // position/rotation/scale wise with the selected active transform
using UnityEngine; using UnityEditor;
public class Aligner : EditorWindow { bool[] pos = new bool[3] { true, true, true }; bool[] rot = new bool[3] { true, true, true }; bool[] scale = new bool[3] { true, true, true };
bool posGroupEnabled = true; bool rotGroupEnabled = true; bool scaleGroupEnabled = false;
void OnGUI() { posGroupEnabled = EditorGUILayout.BeginToggleGroup("Align position", posGroupEnabled); pos[0] = EditorGUILayout.Toggle("x", pos[0]); pos[1] = EditorGUILayout.Toggle("y", pos[1]); pos[2] = EditorGUILayout.Toggle("z", pos[2]); EditorGUILayout.EndToggleGroup();
rotGroupEnabled = EditorGUILayout.BeginToggleGroup("Align rotation", rotGroupEnabled); rot[0] = EditorGUILayout.Toggle("x", rot[0]); rot[1] = EditorGUILayout.Toggle("y", rot[1]); rot[2] = EditorGUILayout.Toggle("z", rot[2]); EditorGUILayout.EndToggleGroup();
scaleGroupEnabled = EditorGUILayout.BeginToggleGroup("Align scale", scaleGroupEnabled); scale[0] = EditorGUILayout.Toggle("x", scale[0]); scale[1] = EditorGUILayout.Toggle("y", scale[1]); scale[2] = EditorGUILayout.Toggle("z", scale[2]); EditorGUILayout.EndToggleGroup();
GUILayout.Space(30); if (GUILayout.Button("Align!")) Align(); }
void Align() { Transform[] transforms = Selection.transforms; Transform activeTransform = Selection.activeTransform; if (transforms.Length < 2) { Debug.LogWarning("Aligner: select at least two objects."); return; } for (int i = 0; i < transforms.Length; i++) { if (posGroupEnabled) { Vector3 newPos; newPos.x = pos[0] ? activeTransform.position.x : transforms[i].position.x; newPos.y = pos[1] ? activeTransform.position.y : transforms[i].position.y; newPos.z = pos[2] ? activeTransform.position.z : transforms[i].position.z; transforms[i].position = newPos; } if (rotGroupEnabled) { Vector3 newRot; newRot.x = rot[0] ? activeTransform.rotation.eulerAngles.x : transforms[i].rotation.eulerAngles.x; newRot.y = rot[1] ? activeTransform.rotation.eulerAngles.y : transforms[i].rotation.eulerAngles.y; newRot.z = rot[2] ? activeTransform.rotation.eulerAngles.z : transforms[i].rotation.eulerAngles.z; transforms[i].rotation = Quaternion.Euler(newRot); } if (scaleGroupEnabled) { Vector3 newScale; newScale.x = scale[0] ? activeTransform.localScale.x : transforms[i].localScale.x; newScale.y = scale[1] ? activeTransform.localScale.y : transforms[i].localScale.y; newScale.z = scale[2] ? activeTransform.localScale.z : transforms[i].localScale.z; transforms[i].localScale = newScale; } } }
[MenuItem("Examples/Position-Rotation-Scale Aligner")] static void Init() { Aligner window = (Aligner)EditorWindow.GetWindow(typeof(Aligner)); window.Show(); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thanks for helping to make the Unity documentation better!