MAKE VTOUR - Thums configuration

  • Hello everybody.
    I am really triyng to put a name to the VTOUR thums that came with the automatic droplet, and change the place for them, from the left side, to the bottom.
    Does anybody knows how to do that?

    - Putting names to thums
    - changing position?

    any help is very welcome! i have no idea how to do this.. :)

    best,

    nico

  • Hi,

    the thumb image will be build/added dynamically the "buildthumbs" action,
    you can modify that action to change the positions or so,

    e.g. change here the align of the thumbs or add an onhover event to show a text:

    best regards,
    Klaus

  • THANK YOU VERY VERY MUCH! this really helps!

    I was wondering if it is possible to make them static. without the, one on top of each other effect?
    What i want to do is to put all of them at the bottom of the pano.

    BEST,

  • Hi,

    yes, that would be also possible,

    the position of the thumbs was calculated here:

    Code
    mul(plugin[get(thumbname)].x, i,3);
     mul(plugin[get(thumbname)].y, i,3);
     add(plugin[get(thumbname)].x, 5);
     add(plugin[get(thumbname)].y, 5);

    that means:

    Code
    x = i * 3 + 5
    y = i * 3 + 5

    you could e.g. calculate bigger/different distances for the thumbs,

    and then change the "onclick" event to something different,
    e.g. to:

    Code
    set(plugin[get(thumbname)].onclick, loadscene(get(linkedscene),null,MERGE,BLEND(1)) );

    best regards,
    Klaus

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!