Sorry to bother again!
var arr = this.context.physics.raycast();
if (arr.length > 0) {
arr[0].object.getComponent(Renderer).material.color.r = 0;
arr[0].object.getComponent(Renderer).material.color.g = 0;
arr[0].object.getComponent(Renderer).material.color.b = 1;
}
}```
I am changing the colour of the object I am clicking on, and I am noticing that it's applying this change to all objects that share this material. I know that in Unity, they typically give objects instances of materials in runtime to avoid this.
I was wondering if this could be done here? or would I need a separate material for every object?
[Original Post on Discord](https://discord.com/channels/717429793926283276/1033011405022035988)
*by user 95852307077406720*