HI
I have Everpano and I try to switch on free navigator plugin but it will be my first time I dont have experience with editing XML
could someone help me what I should to do .
I want tu use WASD Q Z navigate left /rigth and arrow on keyboart to rotate panorama like on the example :
https://everpano.com/navigator_plugin.php
I just paste in main.xml :
<plugin name="navigator" keep="true" devices="html5"
url="%VIEWER%/plugins/navigator.js".
leftkey = "65"
rightkey = "68"
forwardkey = "87"
backwardkey = "83"
angletolerance = "60"
hotspotvisibility = "model"
notfoundmove = "10"
notfoundtime = "0.3"
navigationmode = "jumping"
navigationclick = "true"
navigationspeed = "100"
loadsceneflags = "MERGE|KEEPVIEW|KEEPMOVING"
loadsceneblend = "BLEND"
loadsceneblendtime = "0.2"
/>
should I do something more ? some action missing?
I have only one panorama so I dont need ?
<action name="sceneFound" >
debug('we have found %1 at a distance of %2');
loadscene(%1, null, MERGE|KEEPVIEW|KEEPMOVING, BLEND(0.5));
set(events.onviewloaded, null);
set(events.onkeydown, stoptween(view.tx|view.ty|view.tz);set(events.onkeydown,null); );
tween(view.tx|view.ty|view.tz, calc('' + image.ox + '|' + image.oy + '|' + image.oz), 2, default, set(events.onkeydown,null);
</action>
<action name="sceneNotFound" >
txtsplit(%1,'|',p0x,p0z,p1x,p1z);
debug('no scene was found, current location is x:', p0x,' z:',p0z,' and click point is x:',p1x,' z:', p1z);
tween(view.tx|view.tz, calc(p1x + '|' + p1z) ,0.3, default,tween(view.tx|view.tz, calc( p0x + '|' + p0z) ,0.3, default));
</action>