Hi,
no, only numeric values can be "tweened",
but there is a possibility to tween e.g. from "center" to "top" alignment,
see here for the
changeorigin() function:
http://krpano.com/docu/xml/#plugin
this function changes the align(=origin) and recalculates the x/y values to keep the current position,
then in a next step it's possible to tween the x/y values,
|
Source code
|
1
2
3
4
5
|
<action name="intro">
wait(2);
plugin[banner].changeorigin(top);
tween(plugin[banner].y, 0);
</action>
|
best regards,
Klaus