I had planned on just doing something like building a script like this automagically for the user and appending it to file:
PHP Code:
SCRIPT
function onCreated() {
0_map[frame] = rotation;
//..for all others..
onTimeOut();
}
function onTimeOut() {
for (s : getSprites()) {
s.rotation = s.index_map[frame];
}
setTimer(.05);
}
That's just some crappy psuedocode, but is that possible with the interfaces that Graal allows? Otherwise I'd have to bake it in with ROTATEEFFECT spam.