Answers for "change size of game unity"

C#
1

change size of a unity object

public GameObject cube;
    public Vector3 sizeChange; // This has to be set for (x,y,z) in the editor
    //public float cubeSize = 0.2f;

    void OnMouseDown()
    {
        cube.transform.localScale = cube.transform.localScale - sizeChange;    
    }
Posted by: Guest on October-20-2021
0

change text size unity

text.fontSize = 20;
Posted by: Guest on October-28-2021

C# Answers by Framework

Browse Popular Code Answers by Language