On the problem that two parameters of littleplanetintro and bouncinglimits are set to true at the same time

  • When the two parameters of littleplanetintro and bouncinglimits are true at the same time, the effect of asteroid can be achieved, but the effect of scaling rebound is not, How to set these two parameters to ensure that the little planet effect and scale bounce effect exist at the same time?

  • Hi,

    this happens because during the little-planet-intro the vertical-panning range is limited by this line:

    Code
    set(view, fovmax=170, limitview=lookto, vlookatmin=90, vlookatmax=90);

    and in the 'skin_update_scene_infos' <action> there is a check for that vertical-panning range and when it is lower than 180 degree, it disables the bouncinglimits setting:

    Code
    if(view.vlookatrange LT 180,
    	if(skin_settings.backup_control_bouncinglimits === null,
    		copy(skin_settings.backup_control_bouncinglimits, control.bouncinglimits);
    	);
    	set(control.bouncinglimits, false);
      ,


    This was done to avoid using the bouncinglimits for partial panos.

    You could either remove that one or the other part to get it working.

    In the next release (1.20.5) there will be also an updated vtourskin.xml that will handle that case automatically.

    Best regards,
    Klaus

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!