I have a Vtour of 13 panos. The first 8 are 360 cylinders. Scene 9 is a 360x180 planet. 10-13 are cylinder panos.
I got the little planet intro to work - almost. scene 1-8 are normal, scene 9 does the intro but NO text, and every pano after that tries to do the flyin including text.
1) How do I totally separate the intro to just a single little planet? Or is the answer just put all the 360x180 at the very end of the VTour?
Here is the code for just the scene 9 section:
<scene name="scene_Arch9" title="Arch9" onstart="" thumburl="panos/Arch9.tiles/thumb.jpg" lat="38.68574333" lng="-109.53287333" heading="0.0">
<preview url="panos/Arch9.tiles/preview.jpg" />
<image>
<cube url="panos/Arch9.tiles/pano_%s.jpg" />
<mobile>
<cube url="panos/Arch9.tiles/mobile_%s.jpg" />
</mobile>
</image>
<!-- startup view settings for 'little planet view' (stereographic=true + fisheye=1.0 + fov>120 + vlookat>70) -->
<view stereographic="true"
fisheye="1.0"
fov="155"
fovtype="VFOV"
fovmax="150"
hlookat="-60"
vlookat="77"
/>
<!-- fisheye and little planets projections are needing more cpu rendering performance,
to reduce the cpu need and get better performance and frame rate, switch to Flash9
rendering while in fisheye/littleplanet/stereographic mode -->
<display flash10="off" details="24" />
<!-- when the loading is done, wait 2 seconds and then start with the animation to an normal view -->
<events onloadcomplete="delayedcall(2.0, normalview());" />
<action name="normalview">
tween(view.hlookat, -40, 2.5, easeInOutQuad);
tween(view.vlookat, -35, 2.5, easeInOutQuad);
tween(view.fov, 85, 2.5, easeInOutQuad);
tween(view.fisheye, 0.0, 2.5, easeInOutQuad);
wait(2.7);
set(display.flash10, on);
showtext('krpano[br]little planet intro example', infostyle)
</action>
<!-- showtext() textstyle -->
<textstyle name="infostyle"
origin="center" edge="center" yoffset="-39" textalign="center" background="false" border="false"
fontsize="40" textcolor="0xFFFFFF" bold="false" effect="glow(0xFFFFFF,0.7,4,2);glow(0x000000,1,4,2);dropshadow(3,45,0x000000,2,0.6);"
showtime="3.0" fadeintime="1.0" fadetime="1.0"
/>
<!-- place your scene hotspots here -->
</scene>
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »Stephen« (7. März 2013, 05:22)