Posts by i.shilyaev

    I think this way is the best:

    Code
    calc(layer[result].html, 'i love ' + %1);


    Code
    calc(layer[result].html, carstype + %1);


    set(stickietitle, calc:'global.data[stickie_close].content');
    copy(stickietitle,get(stickietitle));

    Code
    calc(stickietitle, 'data:stickie_close');


    or

    Code
    txtadd(stickietitle,'data:stickie_close');

    Glad to hear such flattering feedback from you guys.

    The camera we used is most of time Gopro Fusion and Insta One X (for one small dynamic scene).
    Smooth playing on mobile was our technical goal. Therefore, we had to reduce quality. In an experimental way, we found these parameters: 1440x720, 2Mbit 2pass (or 3Mbit, depends on the duration of the video, file must nearly 40-60MB ) 12.5fps.
    Desktop params: 2K, 5-7 Mbit 2pass 25fps (nearly 100MB total).

    A few months ago we used the Insta360 pro camera to shoot our project.
    Well, in our opinion - this is the best camera at the moment.
    In the batch mode, this camera makes a series of 10 images with 8k resolution, and we use this great feature here
    But GoPro Fusion seems highly promising for now.

    Hi! I have some trubles with addlayer() action.
    I want to create a simple layer for each hotspot on scene (draw a little circle on bottom of the screen). When hotspot is active, layer will be blinking (or change color/size, don't know yet). But something wrong with my code (or bug?). Only one layer with name="layer_7" is created (There is 8 hotspots on scene)
    Here is my code:

    Code
    for(set(hsix, 0), hsix LT hotspot.count, inc(hsix),
        calc(temp_name,'layer_' + hotspot[get(hsix)].name);
        addlayer(temp_name);
        mul(layer[temp_name].x,hsix,40);
        dec(layer[changes_breadcrumbs].x,20);
        assignstyle(layer[temp_name],'breadcrumbs_style');
        txtadd(layer[temp_name].html,get(hsix));
      );

    Help me pls!

    OMG I forget get()

    Code
    for(set(hsix, 0), hsix LT hotspot.count, inc(hsix),  
        calc(temp_name,'layer_' + hotspot[get(hsix)].name);
        addlayer(get(temp_name));
        mul(layer[get(temp_name)].x,hsix,40);
        dec(layer[changes_breadcrumbs].x,20);
        assignstyle(layer[get(temp_name)],'breadcrumbs_style');
        txtadd(layer[get(temp_name)].html,get(hsix));
      );

    Hi everyone!

    What about SVG animation? This option has a great opportunities!
    Is this possible to use .svg files or <svg> code as source for layer in krpano DOM three and then to manipulate some parameters? For this moment only in-code animation work (CSS and SMIL). Animated layer with .svg file looks like behind the glass. But it would be great if we could set and edit it dinamically. Other words, create and animate svg by code and CSS on some user events, like 'click', 'hover' etc.
    Thanks!