1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<scene name="scene_[BASENAME]" title="[NAME]" onstart=""[THUMB][GPS][DEVICE]>
[VIEW]
[PREVIEW]
[IMAGE]<!-- use some events to do something: -->
<events name="scene1events" onloadcomplete="start_view_moving();"></events>
<!-- to some lookto's, then load another scene -->
<action name="start_view_moving"> oninterrupt(break);
lookto(0,0,90,smooth(10,10,10));
lookto(0,0,90,smooth(10,10,10));
lookto(0,0,90,smooth(10,10,10));
loadscene(scene_XX, null, MERGE, BLEND(1));
lookat(0,0,90); wait(BLEND) </action>
[HOTSPOTS]
</scene>
|