If you like to use customized timers per action and not default one defined in settings.xml then, when your autotour is created and stored in folder robertor open file: autotour_definition.xml
There you find action you want to change. Example:
|
Quellcode
|
1
2
3
4
|
<step name="action_9" action="magflyouts_image_show(pic_front);"/>
<step name="action_10" action="pause_action(get(autotour_settings.pause_on_open_image));"/>
<step name="action_11" action="magflyouts_image_hide(pic_front);"/>
<step name="action_12" action="pause_action(get(autotour_settings.pause_on_close_image));"/>
|
You can chage to:
|
Quellcode
|
1
2
3
4
|
<step name="action_9" action="magflyouts_image_show(pic_front);"/>
<step name="action_10" action="pause_action(8000);"/> <!-- If you want 8 sec pause displaying this image -->
<step name="action_11" action="magflyouts_image_hide(pic_front);"/>
<step name="action_12" action="pause_action(2000);"/> <!-- If you want 2 sec pause -->
|
Same with any lookto action:
|
Quellcode
|
1
|
lookto(94.452,13.54,62.619,smooth(get(autotour_settings.acceleration),get(autotour_settings.breakspeed),get(autotour_settings.maxspeed)))"
|
->
|
Quellcode
|
1
|
lookto(94.452,13.54,62.619,smooth(2,5,10))" <-- accel 2, break speed 5, max speed 10 -->
|