1

I have a prefab in Unity whose scale I have tweaked. I would like its current scale to be considered 1, 1, 1. This will simplify some other game mechanics I am coding.

John Joseph
  • 1,003
  • 1
  • 10
  • 20

2 Answers2

0
  • Create an empty object. Let's call it NewObj.
  • Add you tweaked object as a child to the NewObj.
  • Operate on the NewObj with (1,1,1) scale
Morion
  • 10,495
  • 1
  • 24
  • 33
0

You can reparent all child objects (to parent == null), change scale of your root object to 1,1,1 and drag childs inside again, they will maintain the current size if you do it like that.

If you have a Mesh Renderer on your root object you should go to models import settings and change scale there

Model scale in import settings