Hey!
So I want to animate the text spacing of a label, to make it fold out, like an accordion.
This works, but it moves in visible steps, because text spacing is not set as floats but ints.
I managed to get around this by changing UILabel, so it exposes text spacing as a float.
It does use float when setting the text spacing internally anyway.
However, I really don't like having to change the NGUI source code, since I'll have to do it for every update.
I realize that you can't just change the spacing to float in the next NGUI, since it won't use the old serialized spacing that was saved as an int. Right?
Is there by any chance, a way that NGUI could add this functionality, without breaking anything?
Thanks!