📜  unity set object scale - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:01.599000             🧑  作者: Mango

代码示例2
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;    
    }