Search results
Search results 1-17 of 17.
Hi Guys, does anyone experience this kind of lens flare and how to avoid it?
awesome it's my first time seeing this example.
you can sync them by adding onviewchange or onviewchanged event
Yup, I understand. the option I can think of is more on javascript: create 2 pano viewer, one is overlapping the other, you can create a javascript control to manage the opacity of the first viewer to show the other pano by decreasing the opacity the way you want to do. but this might slightly increase the CPU Usage or the Memory/RAM Usage.
[quote='gillouze','index.php?page=Thread&postID=72214#post72214']I would like to give the possibility to the user to change the "view" daily or nightly during the pano and even having the possibility to change the opacity to different value from 1 to 0 to have a sort of animation if the user doesn't click on anything.[/quote] you can do it with this reference: [url='https://krpano.com/docu/actions/#loadpano.blend']loadpano.blend[/url] and [url='https://krpano.com/docu/xml/#events.onidle']events....
i think there's an error on translation what meant is to create global <hotspot>, it can still use style. here's a working example: <action name="scene01_load"> set(hotspot[scene01_spot1].visible,true); set(hotspot[scene01_spot2].visible,true); </action> <action name="otherscene_load"> set(hotspot[scene01_spot1].visible,false); set(hotspot[scene01_spot2].visible,false); </action> <hotspot name="scene01_spot1" style="skin_hotspotstyle" keep="true" visible="false" ath="2.148" atv="18.182" linkedsc...
indexofrefraction is right, hotspot on the other scene can't be changed without loading it scene. other option is, make a global hotspot and only show it when the secific scene is loaded, so it can still be modified even if the specific scene is not yet loaded
i didn't quite understand, but here's what i'm getting: you need a certain action that will play when a scene is loaded? Example 1: <scene name="scene_01" title="01" onstart="updatesomethingfrominside();" thumburl="panos/01.tiles/thumb.jpg" lat="" lng="" heading=""> <action name="updatesomethingfrominside"> set(hotspot[spot1].ath,100); </action> <view hlookat="0" vlookat="0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" /> <preview url="panos/01.tiles/prev...
if((scene["name"].name == "name") AND (hotspot["name"].name == "name"), <!-- do something here when true --> , <!-- do something here when false --> ); reference: [url='https://krpano.com/docu/actions/#if']https://krpano.com/docu/actions/#if[/url]
Hi, I suggest is to create the <architectural type="residential" status="active" price="240,000" sf="1400" bedrooms="2" bathrooms="2.5"/> outside the scene, and link the <scene> and the <architectural> by adding additional attribute on <architectural> for example <architectural name="name" type="residential" status="active" price="240,000" sf="1400" bedrooms="2" bathrooms="2.5"/> <scene name="name" title="title" active="true" thumburl="panos/blahblah/thumb.jpg" datahere="blahblah"> <view hlookat...
Hi, create action to change the hotspot enabled and visible to true or false <action name="action1"> set(hotpost[hotspotname].visible,true); set(hotpost[hotspotname].enabled,true); </action> <action name="action2"> set(hotpost[hotspotname].visible,false); set(hotpost[hotspotname].enabled,false); </action> to call those action when device is enter on VR Mode, go to vtourskin.xml find WebVR plugin, on that plugin, find onentervr and onexitvr and add the action you created earlier, onentervr="skin_...
set(hotspot[hotspotname].visible,true); set(hotspot[hotspotname].enabled,true);
Hi All, i'm having a problem regarding on onclick on dynamically created hotspot: <datavtourbuilding name="bldg1" country="country1" city="city1" /> <datavtourbuilding name="bldg2" country="country1" city="city1" /> <datavtourbuilding name="bldg3" country="country1" city="city1" /> <datavtourbuilding name="bldg4" country="country1" city="city1" /> <datavtourbuilding name="bldg5" country="country1" city="city1" /> for(set(bldg,0), bldg LT datavtourbuilding.count, inc(bldg), txtadd(bldgname,'bldg_...
Quoted from "Sergey74" Run krpano Tools.exe, there will be a built-in utility for updating http://krpano.com/tools/kupdate/#top thanks, i'll check that out.
Hi All, i would like to ask for a helping hand, i'd been making a lot of virtual tour, i found i need to update the version to fix some bugs, all the virtual tour is made using krpano tool 1.9-pr5, is there a proper way to update the version without recreating everything? thanks in advance.