Posts by di0deman

    After loading the 3D object using a depthmap, I placed polygon hotspots on top of it.

    The code for creating the hotspot is below:

    After setting depthbuffer to true, I was able to hide the hotspot behind the 3d object.

    However, mouse events still occur even though the hotspot is not visible because it is obscured by a 3D object.


    [SOLVED]

    It was solved by setting hittest on depthmap to true.

    Hi Klaus,

    The code to test is written as below:

    The test_onmousewheel action called on krpano 1.20.11 but, never called on krpano 1.21.

    children example in krpano 1.20.11

    children example in krpano 1.21.

    Hi Klaus,

    The code to test is written as below.

    3D-distorted hotspot with videoplayer example in krpano 1.20.11.
    3D-distorted hotspot with videoplayer example in krpano 1.21.

    In the version of krpano is 1.21, the hotspot's video stops or slows down within about 2 to 10 minutes.

    Hi Klaus,

    I'm working on a project that uses wheeldelta values.


    The project works on the three devices listed below.

    • Desktop with mouse
    • Desktop with touch device
    • Mobile

    There was no problem until version 1.20.11 of krpano.


    1. When using a touch device, if the version of krpano is 1.21, the sign of the wheeldelta value is reversed.
    2. When the version of krpano is 1.21, the desktop cannot detect the touch device.

    The code to test is written as below.


    The image below is the log of the zoom in operation when the krpano version is 1.20.11.
    The code above was tested on a desktop with a touch device.


    The image below is the log of the zoom out operation when the krpano version is 1.20.11.
    The code above was tested on a desktop with a touch device.


    The image below is the log of the zoom in operation when the krpano version is 1.21.
    The code above was tested on a desktop with a touch device.


    The image below is the log of the zoom out operation when the krpano version is 1.21.
    The code above was tested on a desktop with a touch device.


    wheeldelta example in krpano 1.20.11

    wheeldelta example in krpano 1.21


    Refer to the image below for the touch device installed on the desktop.

    <plugin name="everpano_ui" keep="true" devices="html5" url="%VIEWER%/plugins/everpano_ui.js"
    vrPosition = "left"
    dollhousePosition = "left"
    panoModePosition = "left"
    fullscreenPosition = "right"

    menuOpen = "0"
    menuAnimation = "0"

    showPanoTitle = "false"

    showNextPrevious = "1"
    showNPTooltips = "1"

    showMeasure = "1"
    />

    I want to customize the ui by using the everpano_ui plugin in main.xml.


    The example code has very limited functionality.


    I want to change the design and position of ui buttons.


    I want to visible or hidden of ui buttons.

    What is the function name to move to the next or previous scene in everpano_ui?


    What is the function name to move to dolhouse or panorama view in everpano_ui?


    What is the function name to open menu in everpano_ui?

    Hi,

    I am using the txtjoin function.

    The description of the txtjoin function is as follows:

    It is explained that you can use value for the parameters "var1, var2, ...".


    I coded it like this:

    Code
    txtjoin(layer[button_test2].html, '|', '0', '0', '0', '0');


    or

    Code
    txtjoin(layer[button_test2].html, '|', 0, 0, 0, 0);


    Here is the result:


    In the result, value is not applied and only the separator is displayed.


    The functionality of the txtjoin function should be updated or the documentation should be modified.


    Before click on the test layer,


    After click on the test layer,


    The border is created but the image disappears.


    How do I solve this problem?

    Hi,

    I am creating layers using the addlayer() function.

    The output results depend on the quality of the internet speed.

    For testing, "krpano Testing Server" is used.


    1. In normal case,

    The resulting video,
    https://youtu.be/IRdr8S-nc8s


    2. If your internet speed is slow,


    The resulting video,
    https://youtu.be/3iJX97fT87A


    The layer is created using the for statement.


    I am checking if all images of the layer are loaded by the onloaded event.


    When the loaded layer is visible, some images that could not be printed are redraw at that time.


    How to solve this problem?

    Hi,
    I created a_type.xml, b_type.xml, c_type.xml, d_type.xml.
    This is a pano xml that contains scenes.


    Load using the loadpanoscene() function through 4 buttons.


    The code of the button layer is shown below.


    Code
    <layer name="load_a_type" style="button" align="bottom" x="-300" y="60" width="100" keep="true"
    html="A-TYPE"
    onclick="loadpanoscene(a_type.xml, scene_on_1stroom);"
    />

    If you load another pano through the button, the thumbnails will not update to the new pano.


    Thank you.