Horje
how to change the width of a panel unity Code Example
how to change the width of a panel unity
// To Change the "Scale" property use localScale, like this
// Change the numbers in the "()" to your choosen scale
public GameObject YourPanel;
YourPanel.GetComponent<RectTransform>().localScale = new Vector3(newWidthUI, newHeightUI, 1);

// If you want to change it in pixels
public GameObject yourUI;
yourUI.GetComponent<RectTransform>().sizeDelta = new Vector2(newWidthUI,newHeightUI);




Csharp

Related
usermanager find based on role Code Example usermanager find based on role Code Example
what is void onmousedown() Code Example what is void onmousedown() Code Example
hello world c++ Code Example hello world c++ Code Example
c# array display Code Example c# array display Code Example
C# api get value from header Code Example C# api get value from header Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10