|
We already know that it's possible to hide or deactivate a mesh using:
but, what if the gameObject has 2 or more meshes and we want to just hide one of them? Imagine this structure: gameObject mesh1 mesh2 mesh3 How to access mesh2 and deactivate it? Thanks
(comments are locked)
|
|
Well i think it is not even possible to use more than one MeshRenderer on the same object, same for MeshFilter. And i think i never see more than one mesh applied to a MeshFilter on any model of mine. If i have several meshes in one Model, it will be seperated into Parents. Then you can just hide the parents if you need to. For example if you want to make an MMO and customize your model, you could include all kind of jackets into one model. If you then want to display only the "naked" version, just make the parent "naked" visible and everything else invisible (like "robe", "t-shirt", whatever) (just an example, there are probably better solutions). If this doesn't help, maybe it would help to know what exactly you want to do. EDIT: You could use a function lide to to show only the mesh you enter in the "showExcept":
So in this case, only "mesh1" will be displayed, everything else will be invisible. you could write several function (to activate only one mesh without deactivating the others, activate everything except one, etc). Your example could work for me, but my problem is that I don't know how to code it... So, for example, with the hierarchy I proposed (house/mesh1) how can I deactivate "mesh1" without deactivating "house"? Thanks
Nov 20 '09 at 08:36 AM
eXKR
edited my post with a code that could help you
Nov 20 '09 at 09:47 AM
Kiyaku
(comments are locked)
|
|
I finally got what I wanted:
This code worked like a charm for me. Thank you very much for your help.
(comments are locked)
|
|
If they have different materials, you could change the material to not render anything, however it seems it would make a lot more sense to actually use three gameobjects if you need to do this.
(comments are locked)
|
