Answers for "change size if more objects added unity ui"

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

Code answers related to "change size if more objects added unity ui"

C# Answers by Framework

Browse Popular Code Answers by Language