Hello! I am trying to set up a material where all of its colour data comes from the material itself (read: no diffuse maps), that can then be vertex colour blended up to 5 times. My material looks like this: The mesh it is applied to looks like this whenever I try and paint a colour on it. In this case I am trying to paint…
$.material = undefined gave the same results as before. Still a phantom material. Even stripping the ColorEffectRGB from the Collada file will still import a material, it would be named ColorMaterial in that instance. Sooooo I got the below to work (lets hear it for Notepad++). I did some playing around in the Collada…
Kind of ironic to go from medical 3d modeling to making weapons lol One thing I will say is I would consider having your medical portfolio not show up on your home page, recruiters will mainly want to see relevent art pieces to the job your applying for, the other stuff is cool too but probably not necessary to see when…
I'm not sure what I did but the attribute editor for materials was changed somehow and every attribute available for materials is being displayed under the material type instead of separating them out into categories such as "common material attributes". I've provided a screenshot. I deleted the preferences folder, I went…
Ola, Let's say i have a multimaterial, with standard submaterials in it, with a diffuse texture in each of the submaterial. In the material editor, my current slot is on a diffuse bitmap node. I want to access the parent standard material from here. Not the root multimaterial. (Purpose is to rename the standard material as…
To be more precise, my understanding is each material in Blender has its own "shader graph": so can I share a single shader graph between materials, so that when I can update one material's shader graph, it will reflect changes in all other materials sharing the same shader graph. Currently I have to duplicate materials…
These strange squares appear on the mech that follows the wire frame in substance painter, everything looks fine in blender. I have removed my bones from the model, remade the uvs, deleted and made new materials and adjusted the normal multiple times, I'm not sure what the issue is when bringing this into substance…
the node has a .material property. If the node.material is a multi-sub object class material then you can infer what is needed from the material, and while looping throuhg your mesh data handle the material ID per face in whichever way suits you best, and even bung in some error checking if you need it. Or just loop the…
Ok, i don't do 3d, nor do i pretend to. Everytime i try to do 3D, i get lost in all the non-user friendly tutorials. But i decided today that i might try to learn to make materials for 3d objects..this is a sample image of me messing around: The image turned out to be a logo, not really a material for any 3d object..but i…
Hey. There are two examples in plugin folder that can help you with materials scripting: Creating Materials from Images.py Editing Materials.py Shortly: # Create new material mat = mset.Material(name) # Delete it mat.destroy() # Assign material to mesh mat.assign(mesh) # Assign texture to material, where texture - path to…