- Home /
Not able to change GameObject transform axis !!
I am not able to change change the transform axis of a gameobject even after using it in empty gameobject. Help as soon as possible. I am using Unity 2017.1.1f1 Personal edition. Is there any problem in new version.
Comment
What do you mean by 'change GameObject Transform axis', if you mean move the gameobject to a new position, it's simply:
transform.position = new Vector3(0, 0, 0);
Otherwise you're going to have to explain your issue in more detail with code snippets
Are you sure you have switched the Transform Gizmo Toggles to "Local"? (in the toolbar)
Answer by DragonFang17 · Nov 08, 2017 at 11:02 PM
Do you have any code for this game object you are trying to move?