Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Combining meshes not working?

Discussion in 'Scripting' started by PiotrZdanowski, Jun 15, 2018.

  1. PiotrZdanowski

    PiotrZdanowski

    Joined:
    Jun 15, 2018
    Posts:
    4
    Hi, I have a problem and I don't know what to do now.
    I want to add a mesh loaded from resources to existing mesh in gameObject using CombineMeshes but I cannot see the mesh in inspector or on scene.

    Code (CSharp):
    1. public void AddMesh(Mesh mesh)
    2.         {
    3.             CombineInstance[] combines = new CombineInstance[2];
    4.             combines[0].mesh = gameObject.GetComponent<MeshFilter>().sharedMesh;
    5.             combines[1].mesh = mesh;
    6.             Mesh finalMesh = new Mesh();
    7.             finalMesh.CombineMeshes(combines, false);
    8.             gameObject.GetComponent<MeshFilter>().sharedMesh = finalMesh;
    9.         }
    And when i want to add some new mesh everything dissapears even if i had some mesh earlier.
    Przechwytywanie.PNG
    Any help?
     
  2. Peter77

    Peter77

    QA Jesus

    Joined:
    Jun 12, 2013
    Posts:
    6,589
    PiotrZdanowski likes this.
  3. PiotrZdanowski

    PiotrZdanowski

    Joined:
    Jun 15, 2018
    Posts:
    4