• Hi,

    an object pano in krpano is technically just a flat pano with several frames,
    and the frames were which by some custom actions,

    see the "objectskin.xml" for details - there the code for controlling (rotating) the object is defined,

    the rotation speed can by controlled by the time internal here:

    Code
    delayedcall(0.01,objectrotate());

    and if you want auto-rotation you could write and call a custom action like this:

    Code
    <action name="objectautorotaterotate">
    	inc(image.frame,1,get(image.frames),1);
    	delayedcall(0.5,objectautorotaterotate());
    </action>

    there the current frame number will be increased every 0.5 seconds,

    best regards,
    Klaus

Jetzt mitmachen!

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