Hi all, I recently have gotten into cross-eye 3d. I know all that needs to be done is have the "right" picture on the left side of the screen, and the "left" picture on the right side of the screen. So I would like to know how to create two different views on screen, to see my level, but also be able to turn the cameras and move about the level.
here is the code to create the views but the views are not visible on the screen, its just the default view visible.
VIEW* camera2_view =
{
layer = 0;
pos_x = screen_size.x/2;
pos_y = screen_size.y;
size_x = screen_size.x/2;
size_y = screen_size.y;
flags = SHOW;
}
VIEW* camera1 =
{
layer = 0;
pos_x = 0;
pos_y = 0;
size_x = screen_size.x/2;
size_y = screen_size.y;
flags = SHOW;
}
any help or ideas on how to make this work?