https://www.panorama-fotos.org/pano/Hacienda
<!-- Blur-Plugin laden -->
<plugin name="pp_blur" keep="true" url="%VIEWER%/plugins/pp_blur.js"
enabled="true" range="20" quality="8" phase="2" />
<!-- Start-Event nur einmal pro Tour-Ladung -->
<events name="intro" keep="true" onloadcomplete="start_intro_once();" />
<!-- Optionale Startwerte (sehr weit & fisheye) -->
<view fovtype="MFOV" fov="150" fovmax="170" fisheye="1.0" limitview="auto" />
<action name="start_intro_once">
ifnot(intro_done,
set(intro_done, true);
<!-- Sicherstellen, dass die Startwerte auch wirklich aktiv sind -->
set(view.fovmax, 170);
set(view.fov, 150);
set(view.fisheye, 1.0);
<!-- Blur: stark starten und auf 0 ausfaden -->
set(plugin[pp_blur].enabled, true);
set(plugin[pp_blur].range, 25);
tween(plugin[pp_blur].range, 0, 2.2, easeInOutSine,
set(plugin[pp_blur].enabled,false));
<!-- Kamerafahrt: sehr langsam von Fisheye + weit auf normal -->
tween(view.fisheye, 0.0, 6.0, easeInOutSine);
<!--tween(view.fov, 90, 6.0, easeInOutSine); -->
);
</action>