Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to make a simple toggle-script that switches camera view states between A and B, eg. Top and Bottom. So if I'm in Top view, then it should switch to Bottom and vice versa. I'm not great at coding but keen to learn, so would appreciate some help.
Pseudo code:
$currView = <some way of retrieving the current 'camera view'>
If currView is "top" {
viewSet -bottom;
}
else
{
viewSet -top;
}
Solved! Go to Solution.