Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
5 registered members (Dico, AndrewAMD, TipmyPip, NewbieZorro, Grant), 15,791 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
split window #10662
10/15/02 18:02
10/15/02 18:02

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



hello, sorry by my bad english, but i'm a spanish.
Question: It's posible split the screen?? this is, divide 2 parts. One middle screen top, and the other middle screen bottom, for watch two different views of the same game.

thank you.

Re: split window #10663
10/16/02 07:22
10/16/02 07:22

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



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.

Re: split window #10664
10/16/02 07:23
10/16/02 07:23
Joined: May 2002
Posts: 752
Frankenthal Pfalz/ Germany
Rich E. Offline
Developer
Rich E.  Offline
Developer

Joined: May 2002
Posts: 752
Frankenthal Pfalz/ Germany
Here, in the ACKNEX User Magazine there ia an example to create multiple views.
Watch at the "beginner“s corner".
I hope that could help you.

Rich E.


Re: split window #10665
10/16/02 22:37
10/16/02 22:37

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



thank you, but ... is this code for 2d games or 3d games? because I need two views 3D.

Another question: how could I import a wordl created by 3d'studio?? Need I a plugin??

Re: split window #10666
10/16/02 22:48
10/16/02 22:48
Joined: Sep 2002
Posts: 307
United Kingdom
dragon100 Offline
Senior Member
dragon100  Offline
Senior Member

Joined: Sep 2002
Posts: 307
United Kingdom
hi

if what you want to create is a two player split screen take a look at this post

it deals with creating a split screen 3d shooter
it also gives a link to downloading a demo of a split screen game

hope this helps you [Smile]

Dragon100

Re: split window #10667
10/17/02 00:54
10/17/02 00:54

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



Can you do split screen 2 player with Extra or do you have to have Com or Pro?

Re: split window #10668
10/17/02 01:50
10/17/02 01:50
Joined: May 2002
Posts: 752
Frankenthal Pfalz/ Germany
Rich E. Offline
Developer
Rich E.  Offline
Developer

Joined: May 2002
Posts: 752
Frankenthal Pfalz/ Germany
@One Touch

A 2 player splitscreen you can make with every edition.


Re: split window #10669
10/20/02 08:15
10/20/02 08:15

A
Anonymous OP
Unregistered
Anonymous OP
Unregistered
A



OneTouch: you can have even 100 views in each version, though you would have a major FPS hit [Big Grin]


Moderated by  HeelX, Spirit 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1