I have a PROTO of some object with TouchSensor and I'd like to link different ROUTEs to it when creating objects
e.g. I have
PROTO plate[]
{
Shape {..something..}
DEF TS TouchSensor {}
}
I want to call
plate{ROUTE ...}
plate{ROUTE ...}
with different ROUTEs, but having one PROTO
How to implement this?
Thanks