Hi,
I want change my custom 3d model’s color to red. (“fbx model”)
but, it always changed black.
and I don’t know why it keeps changing black color.
this is my 3d model’s texture
and this is my color change code.
thank you.
onClick Function(){
let _object = intersects[0].object;
let cloned = _object.material.clone();
_object.material = cloned;
_object.material.color.set(0xff0015);
}