How could I change the color of a mesh?

Basically, I want to make golden items. Like a golden dominus, or a golden item already on the catalog. How could I do this?

There is Texture property in mesh instance, you can change it to another image id in order to change texture

Remember that there is UV map and it will affect the texture position / scale on the model

You can also remove the texture and color the part

1 Like

If the mesh has a texture, you’d have to retexture the entire thing if you want it to be “golden”, but if you simply want to change the color, make sure to delete the textureID from the mesh, and just change the color.

1 Like

Thanks! Will give this a try!.