Handy Transform Shortcuts
Quickly access the controls (instead of clicking the buttons):
W = Translate E = Rotate R = Scale T = All Three
Shortcuts in code:
Vector3.left;          // Equivalent to Vector3(-1, 0, 0)Vector3.right;         // Equivalent to Vector3(1, 0, 0)Vector3.up;           // Equivalent to Vector3(0, 1, 0)Vector3.down;         // Equivalent to Vector3(0, -1, 0)Vector3.forward;         // Equivalent to Vector3(0, 0, 1)Vector3.back;         // Equivalent to Vector3(0, 0, -1)Last updated
Was this helpful?