Take the 2-minute tour ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I know I can click on the "move" button

move button in the UI

and use my mouse to drag the object around. How can I do the same using my keyboard?

share|improve this question

2 Answers 2

There is no keyboard shortcuts for moving a selected object around (afaik). What I like to do is change the location on each axis by selecting the gameobject in question and moving it using the inspector; If you mouse over the axis you are working with (for instance: X), you can 'drag' it right or left to increase and decrease that value. This might be a good alternative.

enter image description here

share|improve this answer

I don't have my copy of unity to hand right now to try it out, but I couldn't find any way to move gameobjects using the keyboard. However, I did find this page full of keyboard shortcuts. Also, if the issue was not having enough precision with the mouse, you can always use snapping to make sure that the vertices and objects align properly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.