Posts by grycikua

    Hi Klaus,
    Thanks a lot for your work, its really great. Unfortunatley I still have problems to view my vr tours made with VTOUR (VR-OPT) in Oculus Go (Browser 9.2...)
    The Oculus Browser (unlike samsung or firefox on Oculus go) does not recognize my tour (made with 1.20.7) as VR. The Button "Enter VR" does not appear. When I set it manualy to VR360, it enters VR-mode, but displays only a distorted 180 degrees picture. I tried to find out something about this issue in the forum, but didnt find anything... Am I the only one with this problem, did I make a basic mistake??
    Thx for your help

    Try to add webxr: "auto" in embedpano and check that your oculus browser is not simulating desktop device.

    Hi Klaus!
    We have a one another question without answer %)
    When I launching tour(1.20.7) on android phone(9.1, Huawei p20pro) in Chrome browser(latest version) - it moves me to Google VR services.
    And krpano has an incorrect sizes of hotspots and screens for each eye.
    I have tried to find any info about these services - but no luck.
    Did you know smth about it?

    Thanks!

    Hi Klaus.
    After todays update of Oculus browser with disabled VR support we have enabled WEBXR.
    Added webxr: "auto", disabled auto_oversampling, tilesize is 1536, clear krpano without any custom code.


    And get an issue: after loadscene I got an tiles of previous scene in bottom left quarter of left eye, usually thats are a bottom square of pano.

    Tested on a few GOs, same issues.

    Hello folks!
    I have a problem with followmousecontrol and hotspot popups.

    When pano was opened hotspot moves with image while I`m moving cursor over the pano. Here everything work correctly.
    Hotspot has onover() popup dynamically added layer.
    After onover this hotspot do not follow with image.

    I think that problem is that used this hotspot as parent for layer.

    Hello!
    I think, that I found a bug on Windows.

    I did this resize action and it does not work on windows in Chrome.

    Code
    if(
    stagewidth LT 1022, trace('case 0'); size_case_0();,
    (stagewidth GT 1024) AND (stagewidth LT 1368), trace('case 1'); size_case_1();,
    (stagewidth GT 1369) AND (stagewidth LT 1918), trace('case 2'); size_case_2();,
    stagewidth GT 1922, trace('case 3'); size_case_3();
    );

    When I add new variable stage_width - everything works good.


    Code
    set(stage_width, get(stagewidth));
     
     if(
     stage_width LT 1022, trace('case 0'); size_case_0();,
     (stage_width GT 1024) AND (stage_width LT 1368), trace('case 1'); size_case_1();,
     (stage_width GT 1369) AND (stage_width LT 1918), trace('case 2'); size_case_2();,
     stage_width GT 1922, trace('case 3'); size_case_3();
     );