Split Screen

Blitz3D Forums/Blitz3D Programming/Split Screen

Amanda Dearheart(Posted 2008) [#1]
Is Blitz3d capable of split-screen effects?
Not seperate windows, mind you but split-screen?


mtnhome3d(Posted 2008) [#2]
yep check out the viewport commands heres a link to them.
http://blitzbasic.com/b3ddocs/command.php?name=cameraviewport&ref=goto


IPete2(Posted 2008) [#3]
yes use Viewport it works a treat.

IPete2.


amitjf(Posted 2008) [#4]
use the camera viewport in order to do that. if you have camera1 and camera2, which you want to show different things from each one, on two parts of the screen:
CameraViewport camera1,x1,y1,width1,height1
CameraViewport camera2,x2,y2,width2,height2