You are not logged in.

Search results

Search results 1-17 of 17.

Friday, September 22nd 2017, 4:19am

Author: Yanward

krpano 1.19-pr13

Awesome update

Thursday, August 24th 2017, 5:43am

Author: Yanward

Circle Flare?

Hi Guys, does anyone experience this kind of lens flare and how to avoid it?

Monday, August 14th 2017, 4:39am

Author: Yanward

Sliding 2 panoramic images at the same time and playing with opacity between them

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.

Friday, August 11th 2017, 11:58am

Author: Yanward

Sliding 2 panoramic images at the same time and playing with opacity between them

[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....

Monday, August 7th 2017, 4:17am

Author: Yanward

How to write a condition correctly?

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...

Friday, August 4th 2017, 11:05am

Author: Yanward

How to write a condition correctly?

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

Friday, August 4th 2017, 5:57am

Author: Yanward

How to write a condition correctly?

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...

Thursday, August 3rd 2017, 7:12am

Author: Yanward

How to write a condition correctly?

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]

Friday, July 28th 2017, 5:32am

Author: Yanward

Question about XML Structure of tour/scene data

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...

Friday, February 17th 2017, 4:21am

Author: Yanward

Show button ONLY in webvr view

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_...

Friday, February 17th 2017, 3:58am

Author: Yanward

Show button ONLY in webvr view

set(hotspot[hotspotname].visible,true); set(hotspot[hotspotname].enabled,true);

Thursday, December 22nd 2016, 4:58am

Author: Yanward

problem with dynamically create hotspot onclick

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_...

Thursday, November 10th 2016, 3:05am

Author: Yanward

Version Upgrade : 1.9-pr5 to 1.9-pr8

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.

Wednesday, November 9th 2016, 11:00am

Author: Yanward

Version Upgrade : 1.9-pr5 to 1.9-pr8

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.