In your example it would be:
|
Source code
|
1
|
http://lunga.imageweavers.co.uk/tour/?startscene=scene_273&view.hlookat=25&view.vlookat=-10
|
but you need to remove
|
Source code
|
1
|
<view hlookat="0" vlookat="0"
|
from your scene definition
or you can make received paramenters handler onnewscene and set view based on paramenters received (kind of overwriting values from memory)
|
Source code
|
1
2
3
4
5
6
7
8
9
10
|
<events name="collecting_paramenters_events" keep="true" onnewscene="received_parameters_handler(); " />
<action name="received_parameters_handler">
set_new_view(ath,atv);
</action>
<action name="set_new_view">
copy(view.hlookat,%1);
copy(view.vlookat,%2);
</action>
|
In this case your link would be:
|
Source code
|
1
|
http://lunga.imageweavers.co.uk/tour/?startscene=scene_273&ath=25&atv=-10
|