Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by stefan-nsk · Oct 23, 2015 at 02:46 PM · meshcombinemeshes

Meshes displayed wrongly after CombineMeshes

I tried to combine several meshes programmatically but faced with strange problem.

I used the following code to combine meshes:

 using UnityEngine;
 using System.Collections;
 
 public class WorldGenerator : MonoBehaviour
 {
 
     public GameObject cube;
     public Material material;
 
     void Start ()
     {
         for (int x = -1; x <= +1; x++) {
             Vector3 position = new Vector3 (x, 0, 0);
             GameObject obj = Instantiate (cube, position, Quaternion.identity) as GameObject;
             obj.transform.parent = gameObject.transform;
         }
 
         MeshFilter[] meshFilters = GetComponentsInChildren<MeshFilter>();
         CombineInstance[] combine = new CombineInstance[meshFilters.Length];
         int i = 0;
         while (i < meshFilters.Length) {
             combine[i].mesh = meshFilters[i].sharedMesh;
             combine[i].transform = meshFilters[i].transform.localToWorldMatrix;
             meshFilters[i].gameObject.active = false;
             i++;
         }
 
         MeshFilter meshFilter = gameObject.AddComponent<MeshFilter> ();
         meshFilter.mesh = new Mesh ();
         meshFilter.mesh.CombineMeshes (combine);
         MeshRenderer meshRenderer = gameObject.AddComponent <MeshRenderer> ();
         meshRenderer.material = material;
     }
     
 }
 

I added this script to an empty object and here is what I got: alt text

So cubes are displayed wrongly after combining.

I read and googled a lot but didn't find the answer. Could someone help me?

Thanks!

cubes.jpg (77.3 kB)
Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image npatch · Oct 24, 2015 at 11:11 AM 0
Share

I think it's either a bug when combining the meshes with the uvs, or the shader your material uses(http://docs.unity3d.com/$$anonymous$$anual/SL-CullAndDepth.html , check out the image under "Transparent shader with depth writes").

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Bunny83 · Oct 24, 2015 at 11:31 AM

That looks like you just use a wrong shader that doesn't write to the depth buffer, like transparent shaders and some other special effect shaders. So you simply get overdraw.

Unity sorts transparent geometry on a per object base. If you combine all into one mesh the order in which the triangles are rendered only depends on the order they appear in the mesh itself.

If you always have the same view angle you can simply rearrange your objects from far to near. However it seems that you don't really use transparency so use a shader that runs in the opaque queue and actually writes to the depth buffer.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

CombineMeshes() Not Working Properly? 0 Answers

Create a mesh from a sub mesh 2 Answers

Assertion failed on expression: '(int)lastVertex < GetVertexCount()' 1 Answer

Combining meshes with correct tiling 0 Answers

change pivot after Mesh.CombineMeshes? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges