You can easily create two different views.
Just create two like the folowing code:
code:
view Kamera1 // Camera at the top
{
layer = 1;
pos_x = 0;
pos_y = 0;
}
view Kamera2 // Camera at the bottom
{
layer = 1;
pos_x = 0;
pos_y = 384;
}
function init_cameras() // call once in main()
{
camera.visible = off;
Kamera1.size_x = 384;
Kamera1.size_y = 1024;
Kamera1.visible = on;
Kamera2.size_x = 384;
Kamera2.size_y = 1024;
Kamera2.visible = on;
}
function update_cams // Call every frame-cycle
{
Kamera1.x = something; // the value u want
Kamera1.y = something; // the value u want
Kamera1.z = something; // the value u want
Kamera2.x = something; // the value u want
Kamera2.y = something; // the value u want
Kamera2.z = something; // the value u want
}
I hope that will help you.
For further information about views, just look at the camera-tut in the download section.