Hi I'm kinda new to Marmoset Toolbag, but I'm having a problem getting my textures/materials to show. I've exported the model out of 3ds Max with all it's materials - both FBX and OBJ - but neither load up the textures when I import the model in. Even importing the MTL file via Material doesn't do anything. All the…
I have 1 multi/sub-object and 1 standard material in my scene. In multi/sub-object I have 20 textures (diffuse color), every texture has different ID. is it possible to join this standard material to multimaterial in that way, that the texture from standard material will have 21st ID in multimaterial and automatically…
Last weekend I decided to do a material update on an older asset I had created about 5 years ago. And besides, older weapons are so much fun to work on due to their variety of materials. I redid the UVs, bakes, materials, and presentation/lighting. It was fun revisiting an older project and seeing how well some of it held…
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…
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…
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…
Hey everyone, I'm starting to toy around with UT3Ed, but when I try to use a Multi/Sub-Object Material for a static mesh it looks textured properly in Max, but when I bring it into UnrealEd I get all of the material slots, but it ignores any materials past the first two slots. Here's a screenshot of the setup: It seems to…
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…