It will be the cube.
Why? Why transform.localScale sets to (0,0,0)? And smallScale at Start() became (0,0,0) after dividing, but its component are as expected x=0.015f, y=0.02f, z=0.01).
Help, please. I’m tired and confused.
I also noticed in your coroutine you’re setting newScalez = go.transform.localScale and then adding to that, but then you update transform.localScale. Unless go.transform.localScale changes value, your newScalez value will never change as it will always get reset to the same value at the start of your while loop.
I don’t understand your question. Please clearly state what you wanted to happen, what actually happened, and how they are different.
One thing that jumps out at me though is that you are using a variable called “go” on line 19 that is not used anywhere else. I’d guess that either that’s wrong, or the other uses of “transform” are wrong.
Where are you seeing 0,0,0? If you’re seeing it in Debug.Log, Vector3.ToString rounds all three floats. Either provide a custom format to it, or Debug.Log x, y, z individually.