Thank you very much for the Krpano side menu plugin! I've been using it in a recent project, and would like to get some animation going with the opening and closing of the menu. I'm wondering if you could give me some advice on how to get this going.
I've tried using the tween function to animate the width of menu_settings.background_width in the slide_menu_right and slide_menu_left actions. I know that there is probably much more involved with the process of animating this menu (or I'm not on the right track at all), but I'm a beginner to Krpano, and so am experimenting with what I can.
Below is an example of my use of the tween function:
<action name="slide_menu_left">
tween(menu_settings.background_width, 0, 2);
set(new_x,get(menu_settings.background_width));mul(new_x,-1);set(plugin[menu_background].x,get(new_x));delayedcall(0.1,set(plugin[btn_menu].visible,true););
</action>