Hi curtisio,
Yes, you can use Jpeg panoramas with hotspots to load other Jpeg panoramas. You must create a script file, this is a simple TXT file with several instructions. Read the basic here
http://www.devalvr.com/paginas/soporte/scripts.htmlFor example, you can create a script named "script.txt" with the next content to define two Jpeg panoramas:
Code:
(pano1)
{
type=PANORAMIC;
file=panorama1.jpg;
}
(pano2)
{
type=PANORAMIC;
file=panorama2.jpg;
}
Now, you can open this "script.txt" file with DevalVR player, the first panorama1.jpg will be loaded.
Use the Hotspots tool to create the NODO instructions into the panorama, this instruction defines a hotspot. You can copy and paste the NODO lines into your "script.txt" file, for example:
Code:
(pano1)
{
type=PANORAMIC;
file=panorama1.jpg;
NODO="hotspot0",1,"",26.24,40.22,189.62,-55.65,40.22,184.81,26.24,-39.27,189.62,-55.65,-39.27,184.81,0, 0, 1, "", "GoToFrame("pano2");";
}
(pano2)
{
type=PANORAMIC;
file=panorama2.jpg;
}
Remove the latest text parameter in the instruction NODO, and write "GoToFrame("pano2");"
This latest parameter is the code to execute when you click in the hotspot, in this case the GoToFrame() function loads the panorama "pano2".
In addition, you can define the instruction TRANSITION in the first panorama, to add a blending effect, and a ZOOM instruction to define the initial zoom of your Jpeg panoramas, for example:
Code:
(pano1)
{
type=PANORAMIC;
file=panorama1.jpg;
zoom=0.7;
TRANSITION= 1, 100, 2, blend;
NODO="hotspot0",1,"",26.24,40.22,189.62,-55.65,40.22,184.81,26.24,-39.27,189.62,-55.65,-39.27,184.81,0, 0, 1, "", "GoToFrame("pano2");";
}
(pano2)
{
type=PANORAMIC;
file=panorama2.jpg;
zoom=0.7;
NODO="hotspot0",1,"",-147.92,32.59,-118.08,-79.20,32.59,-175.62,-147.92,-60.36,-118.08,-79.20,-60.36,-175.62,0, 0, 1, "", "GoToFrame("pano1");";
}
Tell me if you have any problem.
regards!