Hi!You can set any view.
for example
set(view.hlookat,150);
or set(view.vlookat,30);
But, if you mean that your scene has some start view settings, and you want to restore start view after rotation, then you need to store view settings in some custom variables in scene onstart event.
And then you can restore view settings from variables
save:
copy(starthlookat,view.hlookat); - where starthlookat is your custom variable;
restore:
copy(view.hlookat,starthlookat);
Regards
Andrey