YoYo Games Wiki

Switching Views

From YoYoGames Wiki

To switch a view you simply change the value of view_visible[current_view_you_are_using] = 0 and change value of view_visible[view_you_want_to_use] = 1

for example if you want view to change from view 0 to view 1 here is the code you would use...

 { view_visible[0] = 0 ;    view_visible[1] = 1 ; }  }