Search found 95 matches

by dingo
Fri Jun 25, 2004 5:07 am
Forum: Open Discussion and Dev Announcements
Topic: Anyone making anything similar to Oni?
Replies: 9
Views: 1841

Anyone making anything similar to Oni?

Are there any prokects that are similar to the Bungie game Oni?

Similar elements would be
-3rd person camera
-bone animation
-hand to hand combat
by dingo
Mon Jun 21, 2004 12:17 am
Forum: Open Discussion and Dev Announcements
Topic: The Robomaniac 3D Engine Foundation Contest 1
Replies: 50
Views: 31626

How did you get that CIA classified material ?????????
by dingo
Sat Jun 19, 2004 10:09 am
Forum: Beginners Help
Topic: Map
Replies: 3
Views: 365

depends how detailed you want the placement of trees to be. If you're makeing a flight sim for example then use a heightmap and add trees randomly.

If you want a FPS with tight quarters battle then use a BSP and place trees via entities in that BSP
by dingo
Sat Jun 19, 2004 10:05 am
Forum: Beginners Help
Topic: "addTerrainSceneNode" ,how to take out pane or squ
Replies: 2
Views: 373

Just first up - jl0206 most of your recent questions would be assisted by searching for relevant articles at www.gamedev.net - this means you don't need to wait for an answer here (btw google is good too :) also try www.gametutorials.com and for basic OpenGL stuff goto nehe.gamedev.net And in answer...
by dingo
Wed Jun 16, 2004 11:57 pm
Forum: Beginners Help
Topic: Simple Bouncing Ball Around Screen Help
Replies: 2
Views: 336

If you are detecting collision with the edge of the screen then you will need to unproject the ball each frame to get the ball's screen coordinates because in 3D the coordiantes do not relate to the screen pixels (like 2D) but relate to an imaginary 3D world with x, y, z axes. Thus you will need to ...
by dingo
Wed Jun 16, 2004 12:21 pm
Forum: Beginners Help
Topic: How can I let my character fight ???
Replies: 7
Views: 647

Tell them their Girlfriend is a dog :)


Seriously you need to animate some fighting moves and play them back using your program.

Google for some animamtion tuts
by dingo
Wed Jun 16, 2004 4:01 am
Forum: Beginners Help
Topic: Irrlicht related timing issues (screen shaking)
Replies: 1
Views: 221

I don't really know the answer but if I was you I'd look to see if some memory is being allocated within the draw loop or if some array is being resized, or file being read in or massive memory moves etc every frame
by dingo
Wed Jun 16, 2004 3:47 am
Forum: Beginners Help
Topic: How use terrain in irrlicht? Have you any example?
Replies: 13
Views: 1892

Thanks guys for the response
by dingo
Tue Jun 15, 2004 8:18 am
Forum: Beginners Help
Topic: How use terrain in irrlicht? Have you any example?
Replies: 13
Views: 1892

I too would like a nice simple tutorial to work from :)
by dingo
Tue Jun 15, 2004 8:16 am
Forum: Beginners Help
Topic: Poor Quality Pics and Non working buttons
Replies: 7
Views: 712

A picture is worth a thousand words - post a screen shot of "bad quality pictures"
by dingo
Mon Jun 14, 2004 12:10 pm
Forum: Beginners Help
Topic: doubts on light
Replies: 14
Views: 887

Below is a screen shot from GTK Radiant 1.4.0 using the "Edit Q3" mode. It shows all the built in (to GTK that is) BSP compiler options - BTW you can add to these if you need to but these are the default. I don't know but I think "super" relates to radiosity (advanced realistic l...
by dingo
Sun Jun 13, 2004 10:33 am
Forum: Beginners Help
Topic: doubts on light
Replies: 14
Views: 887

First thing - make sure when you compile your BSP you turn on all the lighting options - the longer it takes to compile the lights the more realism you'll get when you render it in Irrlicht. ie if you only do a quick light pass the BSP compiler will only make blocky results but if you use superbounc...
by dingo
Sat Jun 12, 2004 4:24 am
Forum: Beginners Help
Topic: models sometimes stop drawing while passing screen edge
Replies: 3
Views: 624

It sounds like you need to make sure your frustum culling is set up right.

Might be Orthagonal viewing with perspective culling or something like .

I don't really know - just guessing
by dingo
Fri Jun 11, 2004 7:37 am
Forum: Beginners Help
Topic: Which is the best internediate C++ book out there?
Replies: 2
Views: 185

Which is the best internediate C++ book out there?

There are heaps of beginner's books but what does everyone recommend for the intermediate programmer?
by dingo
Fri Jun 11, 2004 6:18 am
Forum: Beginners Help
Topic: Does Irrlich can load quake 3 basic entities
Replies: 2
Views: 232

Afaik the light "entity" is not being loaded it is just that the lights in your scene are used as input when the map is compiled to generate the light map. The light maps are just "baked on" ie not interactive. Also ajaik the entities are not loaded in any way yet - there was tal...