3D Rad - Free 3D game maker - Forum

This forum is now archived!

This forum is locked, and is a read-only version. A new community-ran forum can be found at classdev.net

News:

The 3DRad community can be found at classdev.net.

Pages: [1]

Author Topic: 3d glasses  (Read 876 times)

« on: December 12, 2012, 02:32:17 AM »
Is there a way to make 3d glasses work with rad like with the camchases or something
« Reply #1 on: December 12, 2012, 09:14:03 AM »
..
« Last Edit: November 15, 2013, 05:02:34 AM by Leonopteryx »
Using 3D Rad 7.22
« Reply #2 on: December 12, 2012, 11:04:52 AM »
As for 3d in the game, use sprite to filter each lenses.
It may work, but i doubt it.

Look up how the 3d tvs work.
« Reply #3 on: December 12, 2012, 02:54:20 PM »
Well is there a way to make two camchases view with one filtered red and other blue
I tried two the other day
But is there like a way to make it not show blue and let the other cam see through if i can get two cams i can complete anaglyph and if that works I'll do stereoscopic to cause i just need this way and tada I'll be done
« Reply #4 on: December 12, 2012, 03:09:13 PM »
What about just texturing everything red and blue?!
« Reply #5 on: December 12, 2012, 03:33:23 PM »
That won't work
« Reply #6 on: December 12, 2012, 04:31:40 PM »
Another method:
I have a 3d tv that has an alternative 3d method. Basically, it splits the input video in half, left half for left eye, right half for right eye, and actually shows the 3d glasses compatible version on the whole screen. So for 3d rad, just have 2  camchases with their settings to take half the screen. If I remember right, this is the method used in Call of Duty: Black Ops for xbox 360 for the 3d mode.

Currently using 7.22
« Reply #7 on: December 12, 2012, 04:35:08 PM »
..
« Last Edit: November 15, 2013, 05:02:47 AM by Leonopteryx »
Using 3D Rad 7.22
« Reply #8 on: December 12, 2012, 07:29:01 PM »
Well Leo the program you suggest isn't actualy in rad so I'm not using it and redfox does have a basic idea of 3d stuff cause the sprite thing will work but the texture everything red and blue thing was a bit silly

Anyways does anyone know how to change opacity of cam chase?

secondry2

« Reply #9 on: December 12, 2012, 08:41:45 PM »
Im pretty sure the way this works, is there are two separate videos, they are both filtered different colours, and say on the left its red, then the red filtered video, is positioned slightly on the left. And vise versa with blue.

This can be demonstrated by taking your 3D glasses off in a 3D movie.

My suggestion is not to do this in rad, but download Nvidia 3D Discovery as Leo suggested, and make a separate launcher with vb, that launches both 3D Discovery, and your game.
« Reply #10 on: December 13, 2012, 02:12:08 AM »
Well maybe i might do that but is there  a way to make it an option in game without the player downloading it also?
« Reply #11 on: December 13, 2012, 05:32:43 AM »
There was a topic about this a couple of years ago, but it seems to have vanished now, so I'll repeat what I said there:

I have done anaglyph 3D on a non-3D Rad project using the following method: basically, in my render function, I first positioned the camera slightly to the left and rendered with a red tint, then I positioned the camera slightly to the right and rendered again with a blue tint. Because there are about 30 renders per second, the player doesn't notice that it's actually switching between the two different cameras each frame.

I don't remember if anyone got that concept working in 3D Rad, but I would imagine that you could do it by having two camchases placed next to each other and two semi-transparent sprites (one red and one blue) each only rendering to one camchase, then a script that switches between the two camchases, for example:
Code: [Select]
bool switch = true;

void Main()
{
   if (switch) {
      iObjectHide(OBJ_0);
      iObjectShow(OBJ_22);
      switch = false;
   } else {
      iObjectHide(OBJ_22);
      iObjectShow(OBJ_0);
      switch = true;
   }
}

I don't use 3D Rad anymore, so I can't try this, but perhaps someone can get it working.
« Last Edit: December 13, 2012, 05:36:03 AM by StarKiller53861 »
Using 3D Rad v7.10, Windows 7 / Arch Linux, AMD Sempron 2.1GHz, ATI Radeon HD 3200.

Advanced Script Editor for 3D Rad (v3.0.2)
« Reply #12 on: December 13, 2012, 05:32:01 PM »
I have tried that but that bugs on slow computers or I've failed

But I'll keep trying
« Reply #13 on: December 13, 2012, 09:17:10 PM »
The script doesn't seem to work... Hmm. Well I have been testing this with a 50% transparent red and blue sprites. It is an interesting concept, though!
Pages: [1]