“Unity Comment changer la taille du maillage” Réponses codées

Changer la taille d'un objet Unity

    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;    
    }
Simple Simon

Unity Comment changer la taille du maillage

that's not for changing the mesh size! , you are changing the transform scale with that method!
Angel

Réponses similaires à “Unity Comment changer la taille du maillage”

Questions similaires à “Unity Comment changer la taille du maillage”

Plus de réponses similaires à “Unity Comment changer la taille du maillage” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code