Hello.
I can not find how to change the code so that the tour begins with the hidden menu bar.
Can someone help me?
In advance, thank you
(Sorry for my english)
<!-- startup action - here the first pano/scene will be loaded -->
<action name="startup" autorun="onstart">
if(startscene === null, copy(startscene,scene[0].name));
loadscene(get(startscene), null, MERGE);
</action>
and change it to (one line added):
Source code
1
2
3
4
5
6
<!-- startup action - here the first pano/scene will be loaded -->
<action name="startup" autorun="onstart">
if(startscene === null, copy(startscene,scene[0].name));
loadscene(get(startscene), null, MERGE);
delayedcall(0, skin_hideskin() );
</action>
I managed to remove the menu bar. But how to remove the arrows to move from one view to another?
In fact, I use the visit for viewing under cardboard.
thank you
To reverse the rotation, I do not know I just used the example that is given with krpano-1.19-pr2.
For the menu, follow the response of Klaus in this post. Stephane