This seems simple but I just can't figure it out.
Situation: I have a bunch of tiles that are all instances of a tile object. I want one instance to automatically become the same color as as another instance when it changes.
I set up instance variables Rcolor, Gcolor, and Bcolor in the tiles.
On every tick each tile sets its own color using Set color to rgbEx255(self.Rcolor, self.Gcolor, self.Bcolor)
Now I just need to have specific instances automatically set their variables to be the same as another specific instance.
As a sub of the Every tick event, I have Pick Tile where Tile.UID=##, and then set Rcolor to... and this is where I'm stuck. I can't set it to Tile.Rcolor because it just picks the value of the same tile. I can't set it to Tile.UID=different## because then I can't seem to also choose an instance variable from that tile.
How do I do this?