baronfel / Raven

Senior project of AI conversion for CS 4354
7 stars 6 forks source link

Implement 3D support #8

Open baronfel opened 13 years ago

baronfel commented 13 years ago

Implement a 3D camera on the 2D raven view.

The implies some ceiling value that walls/doors/etc rise to. You will need to create a movable 3D camera that renders walls/pickups/bots/projectiles in a 3D manner. The Camera should be able to rotate and maneuver in 3 axes.

Probably what you want to do if figure out what the viewable area of the camera is, see what items are in the view, and render those in 3D. You will want to limit the amount of rendering because 3D is more intensive.

baronfel commented 13 years ago

Prof. Podorozhny suggests we look into Java3d to do the grunt work here.