Search results
Search results 1-20 of 1,000. There are even more results, please redefine your search.
Hi, rights, that's the stereo-separation - the larger the left/right offset the more 'near' appears the object. The resulting separation depends on the 3d position (ath,atv,depth,tx,ty,tz) and the display/vr settings: https://krpano.com/docu/xml/#display Best regards, Klaus
Hi, do you have an examples that show these problems? In my tests cull=twosided works as expected/intended, and about non-distorted hotspots - generally they are working, but maybe there is a special case - has the hotspot child layers? Best regards, Klaus
See here for another, probably easier solution: krpano 1.21 (pre-release)
Hi, do you have a link to the example? For using the html5 controls, the setting renderer="css3d" is required - but there is indeed a bug in the current version that causes an invisible video, when the renderer setting gets changed dynamically in some cases (is already fixed for the next release). Best regards, Klaus
Hi, you could try using the 'outputpath' parameter: https://krpano.com/docu/tools/config/#outputpath Source code 1 krpanotools makepano ... -outputpath=### Best regards, Klaus
Hi, okay, I see now - but I have to say it works as intended... There need to be the global 'krpanoJS' object with its functions and properties. When it's not there, the viewer will not load. In your example, you have fully inlined the code and so that global object doesn't exists anymore. Best regards, Klaus
Source code 1 <events onautorotateoneround="...your code..." /> e.g. using the vtourskin.xml: Source code 1 <events onautorotateoneround="skin_nextscene_loop(+1);" /> Or simply enable the 'autotour' setting in the <skin_settings> in the tour.xml - then this will be done automatically (look for 'autotour' in the vtourskin.xml for details).
Hi, currently the iphone fullscreen 'mode' is only supported when actually using the 'full-screen' That means when using viewport-fit=cover. I don't know yet if that might be also possible without that, but I will check... Technically, this iphone full screen hack is pretty tricky and changes depending on the iOS version and also differs whether the Safari tabs are at the top or bottom (and there are also some special implementations for other iOS browsers). It's necessary to explicitly detect t...
Please see here: https://krpano.com/docu/xml/#display.loadwhilemoving
There was a big note in the release notes: https://krpano.com/docu/releasenotes/#kr…1_compatibility
Do you have an link? Generally such problem is not krpano related, maybe the file path is wrong or the mp3 file itself or the server had an issue or something else... Maybe try here for more: https://www.google.com/search?q=safari+d…dio+data+failed
Please post a link to a ready/complied/running example (or an archive of such example).
Quoted from "Manju" after one rotate can it change to next pano??? There is an 'onautorotateoneround' event for this: https://krpano.com/docu/xml/#events.onautorotateoneround
Hi, do you have a link to your example? So far I can't image any reasons why onready wouldn't be get called... Best regards, Klaus
Hi, Quoted I can´t get the scrollbar to work if the scrollarea is created dynamically. The scrollarea itself works and I kept the code 1:1 to the working example which is included with krpano 1.21 To which example to you refer? I don't known an example was structured this way... I haven't tested your code yet, but I see at least these problematic parts: 1. the 'scrollbar_bg' is put above the 'scrollarea' layer (because it was added later and there is no zorder to sort them). And so the bg layer ...
Wakelock hack for iOS - for normal (2D) tours
Hi, here a small xml plugin that adds wakelock support to krpano (using only the native wakelock API, no ugly hacks): index.php?page=Attachment&attachmentID=3408 Usage - first include the xml anywhere: Source code 1 <include url="wakelock.xml" /> and then request the wakelock in any user-event (like a click): Source code 1 <events onclick="requestwakelock();" /> To release the wakelock later, just call: Source code 1 releasewakelock(); Best regards, Klaus
Use the latest 1.20.11 or 1.21 version: More information here: https://krpano.com/news/#news121_ios164 krpano 1.21 (pre-release) IOS 16.4 iPhone 11 pro max - inverted VR view Additionally the problem should solve also itself by one of the next iOS updates - but updating the krpano version is recommend anyway.
Hi, ab der nächsten Release wird dies für WebGL-Hotspots optional möglich sein (für Bilder, Textfelder und Videos, mit chromakey und alphachannel Support) - bei diesen Elementen ist das Hit-Testing und der Event-Flow komplett selbst-kontrolliert, dort lässt sich so etwas relativ einfach umsetzen. Layer und CSS3D-Hotspots sind dagegen normale HTML Elemente und dort ist das nicht so ohne weiters möglich bzw. teilweise auch gar nicht möglich... Schöne Grüße, Klaus
Hi, rendering transparent materials is tricky and is not supported yet... There are multiple ways to support that (all with different issues) and I'm currently thinking of this one: - first render all objects with the opaque materials normally - then take all objects with transparent materials, sort them based on their distance to the camera - render them from back to front but without writing to the depthbuffer This shouldn't cost much performance (compared to sorting ALL triangles of transpare...