Hi,
note - default tours start with a 'loadscene' call - and with that the view settings from the given scene are loaded.
The 'vars' settings itself are passed before that and so don't have an effect in this case.
You could extend the first loadscene call with a KEEPVIEW flag, then the passed view will be used/kept.
E.g. look in the tour.xml for this line:
|
Source code
|
1
|
loadscene(get(startscene), null, MERGE);
|
and change it to:
|
Source code
|
1
|
loadscene(get(startscene), null, MERGE|KEEPVIEW);
|
Best regards,
Klaus