1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<action name="startup">
<!-- build the thumbnails (remove the next line to remove the thumbnails) -->
buildthumbs();
set(step,1);
set(idletime,4);
set(events.onidle, autotour() );
</action>
<action name="autotour">
oninterrupt(break);
if(step == 1, loadscene(scene_baghahouddin, null, MERGE, ZOOMBLEND(1,2) ); lookto(360, get(view.vlookat),get(view.fov), smooth(2,2,5), false); inc(step); );
if(step == 2, loadscene(scene_chor-bakr-2569, null, MERGE, ZOOMBLEND(1,2) ); lookto(360, get(view.vlookat),get(view.fov), smooth(2,2,5), false); inc(step); );
if(step == 3, loadscene(scene_chor-minor, null, MERGE, ZOOMBLEND(1,2) ); lookto(360, get(view.vlookat),get(view.fov), smooth(2,2,5), false); inc(step); );
...
...
if(step == 11, tourdone(); set(step,1); );
</action>
|