3d scrolling

Blitz3D Forums/Blitz3D Programming/3d scrolling

verfum(Posted 2004) [#1]
I'm creating a top-down 3d game. It's sort of semi-isometric like GTA2.

Was wondering if there's any code out there that can handle 3d scrolling?, i.e. dynamically loading/unloading meshes depending on where the camera is pointed in the world.


Gabriel(Posted 2004) [#2]
Well forget Blitz's loading commands. They're too slow and CPU hogging to be able to stream. You'd have to write your own loading routines and build the meshes up with CreateMesh() AddVertex and AddTriangle, and it still might be slow.

If it's top down, wouldn't it be fairly simple to load the whole city, group the city into "blocks" and HideEntity any "block" which is not in view? You wouldn't really need any fancy occlusion code as long as you grouped the city into cubic areas.