I added support for animation and interaction of Dynamic Components in LightUp. There is a short vid here
[I don't know what YouTube has done to the quality / framerate of the video, but you get the gist]
It supports click on DC and also proximity triggering them so you can have doors opening as you walking around.
I also added some extra optional syntax to the onClick behaviour. You can write:
animateslow("rotx", 0,45,90),cycle
And it will animate from 0 to 45 to 90 degrees and back to 0 when you trigger.
Or you can write:
animateslow("rotx", 0,45,90),cycle,pause
and get the same with a pause between each state.
Or you can write:
animateslow("z", 0,200,400),forever
to loop the animation once its triggered.
Adam