Closed Frq-F closed 1 year ago
How to change the color of rendered objects? For example, after rendering, change its original color to white. I used this code, but did not change the color of the object. May I ask how to solve this problem?
materials = Materials( device=device, specular_color=[[1.0, 1.0, 1.0]] ) images = renderer(mesh, lights=lights, materials=materials, cameras=cameras)
How to change the color of rendered objects? For example, after rendering, change its original color to white. I used this code, but did not change the color of the object. May I ask how to solve this problem?
Change specular color
materials = Materials( device=device, specular_color=[[1.0, 1.0, 1.0]] ) images = renderer(mesh, lights=lights, materials=materials, cameras=cameras)