My use case is to obtain the material coefficients for simple material classes (metals, plastics, wood, fabric, glass etc). As an example, I have created a simple metal gold in Blender 2.79 using the following steps:
- Choose the cycles renderer
- Add Monkey mesh
- Material -> Glossy BSDF
- Pick color of gold (
#FFD700) - Render (Shift + Z)
Now, I want to see what the .MTL coefficients of this material are. To that end, I exported the .OBJ file (which generated its associated .MTL file). But the values in my .MTL file are default values. Moreover, when I re-import the .OBJ into blender, it doesnt show my metal.
My question is: Is there any way I can view the .MTL coefficients of this simple material?
What has been tried: There is one answer here, but I was not able to "pack" anything. In fact I do not know how to pack material properties.
/blender/2.79/addons/io_scene_obj/export_obj.py. According to wikipedia (file specs), there is: Ka (ambient), Kd (diffuse), Ks (specular) and Ke (environment). – brockmann Apr 23 '19 at 19:39