By link I mean I want my objects to act like in some sort of chain mode where for example: Object1 jumps, when he lands he makes Object2 move right, when Object2 is done moving he makes Object3 rotate, and when Object3 is done he makes the Object1 do the same jump, and this goes on forever(or until my computer crashes

I had already done this using command approach, where when object finishes doing something it posts a command with another objects name to object manager, and the manager sends out those commands in the update loop. But the commands were way too slow, the more commands were sent the more performance decreased.
Here's what it looked like when I tested it with rotations:
http://www.youtube.com/watch?v=mxLOc5va ... er&list=UL
In this test the performance issues were hard to spot, but when I tested it with 3 character controllers the fps decreased by 600-700 FPS.
I have one idea in mind that should speed it up, but I'd like to hear what you would do
