I’m trying to find some way to change the RectTransform height by script without success… I can change the scale, but is not what I want to do.
I hope that exist some method (as bellow) or solution to change this property by script.
RectTransform rectTransform = containerList.transform.GetComponentsInChildren<RectTransform> ();
rectTransform.SetWidthHeight(new Vector2(x,y));
… or any other solution to change this property by script.
Even looking the class code I did’t found nothing about width and height.
public sealed class RectTransform : Transform
Nothing here too: http://docs.unity3d.com/ScriptReference/RectTransform.html
What I’m missing? If someone could help me… Thanks a lot!