You are not logged in.

Search results

Search results 1-6 of 6.

Wednesday, November 18th 2020, 11:47am

Author: 6av16

Toggle Autotour with button?

Hi everyone, I'm using the new Krpano 1.20.8. It has a nice feature that easily allows you to make an autotour from your virtual tour. However I haven't found a way to toggle that effect with a button. I can only activate it by either writing "true" or "false" in the skin settings of the tour.xml. Is there a way to easily use a button as a layer that enables the user to switch it on or off during the tour? (I'm a newbie at coding) There is an option to activate and deactivate the autotour by doi...

Thursday, September 24th 2020, 3:06pm

Author: 6av16

Static Scene?

Hi, I've created a virtual tour using the multires tool, however I would like to make two of the panoramas static. The entrance and the aerial view have no environment, so it would be better if the view was somehow fixed on the startup view. Is there a possibility to do this, while keeping all the other characteristics of a regular scene? Thanks in advance! David

Thursday, August 27th 2020, 3:38pm

Author: 6av16

Nextscene Action: How to loop? How to blend with looktohotspot?

I managed to fix the problem with the looping by adding this line for equal scene counts, the loop works perfectly now. Only thing that's still needed are the simultaneous transitions. Source code 1 <action name="nextscene"> add(nextsceneindex, get(scene[get(xml.scene)].index),1); if(nextsceneindex === scene.count, set(nextsceneindex, 1); ); if(nextsceneindex LT scene.count, looktohotspot(spot1, 100, tween); loadscene(get(scene[get(nextsceneindex)].name), null, MERGE, ZOOMBLEND(0.7,2)); );</acti...

Thursday, August 27th 2020, 2:44pm

Author: 6av16

Nextscene Action: How to loop? How to blend with looktohotspot?

Hi, I've tried to create an automatic virtual tour and so far it has worked decently despite not really knowing anything about programming. The last two problems that I can't seem to solve are regarding a "next scene" action I'm using, that was posted somewhere on this forum a while ago. (This action is only for when the automatic tour is started, in order to avoid the timer on the first scene switch) This is the code I'm using: Source code 1 <action name="nextscene"> add(nextsceneindex, get(sce...

Thursday, August 27th 2020, 10:15am

Author: 6av16

Switch between scenes automatically?

Quoted from "San7" Hi, I wrote a simple code that flips through scenes. Create a button and assign it an action autoNextScene(); Source code 1 2 3 4 5 6 if(autoNext, clearinterval('nextsc'); set(autoNext, false); , setinterval('nextsc', 10, skin_nextscene_loop(+1); ); set(autoNext, true); ); Thank you! That worked great. Would it be possible to make it so that when clicking the button it switches directly to the next scene without delay and only then starts the 10 sec. timer? Also, is there a w...

Monday, August 24th 2020, 5:15pm

Author: 6av16

Switch between scenes automatically?

Hi, I've been using Krpano for a while now, but have no background in programming, so anytime something more than the basics is required, it becomes a bit challenging for me. I'm looking for a way to make my VR tour switch from scene to scene automatically. I assume that would work best using some kind of timer that switches to the next scene after f.ex. 10 sec, my main issue is that I need a button that can activate and deactivate the auto switching and a way to individually edit the transition...