Search found 10 matches

by CodeDragon
Sun Dec 12, 2010 12:05 am
Forum: Beginners Help
Topic: Help - Wheel Rotation
Replies: 20
Views: 853

Hmm, Try to use the node->Rotate,
You can let it rotate with a simple loop.
by CodeDragon
Sat Dec 11, 2010 7:45 pm
Forum: Beginners Help
Topic: Adding Collision to all new cubes
Replies: 4
Views: 405

Each of your cube scene nodes is stored as data in a meshbuffer, the more meshbuffers you use (so more nodes) the more drawcalls you will need you can solve this problem by putting all of your static geometry in a small amount of meshbuffers (I think you can find an implementation of this on these ...
by CodeDragon
Sat Dec 11, 2010 5:23 pm
Forum: Beginners Help
Topic: Adding Collision to all new cubes
Replies: 4
Views: 405

I don't know that much about irrlicht's collision system since I mostly use Havok or bullet in my projects, but I do want to give you some pointers for making a minecraft-like game First of all, it isn't a good idea to create a huge amount of cube scenenodes since you will get a high amount of draw...
by CodeDragon
Sat Dec 11, 2010 4:03 pm
Forum: Beginners Help
Topic: Adding Collision to all new cubes
Replies: 4
Views: 405

Adding Collision to all new cubes

I need help with a part of my game, I'm making a game like MineCraft, But I can fix my Collision for each block, When I walk over it with an FPS camera I still can go true it. I already read the Collision tutorial 4 times, and I know how to use it but It always gives errors, so I'm asking someone to...
by CodeDragon
Sun Oct 17, 2010 6:08 pm
Forum: Beginners Help
Topic: Drawing 2D Images gives ugly border.
Replies: 5
Views: 395

Eh? How do I do that?
Because I just load tga files that I made in Photoshop
by CodeDragon
Sun Oct 17, 2010 1:05 pm
Forum: Everything 2d/3d Graphics
Topic: Free 3D Models!
Replies: 3
Views: 7417

Free 3D Models!

by CodeDragon
Sun Oct 17, 2010 12:03 pm
Forum: Beginners Help
Topic: Drawing 2D Images gives ugly border.
Replies: 5
Views: 395

None? I realy need help :o
by CodeDragon
Sun Oct 17, 2010 10:12 am
Forum: Beginners Help
Topic: Drawing 2D Images gives ugly border.
Replies: 5
Views: 395

Drawing 2D Images gives ugly border.

Okay, I tryed to draw 2D images but i want the border to be a transparant. Here is a screen how it looks: http://img257.imageshack.us/img257/9356/imagedrawingbug.png I want to draw this images white-out the border (It needs to be more transparent pixels) Here is my code: #include <IrrLicht.h> using ...
by CodeDragon
Sun Oct 17, 2010 9:08 am
Forum: Beginners Help
Topic: Need Help, I'm new to Irrlight
Replies: 3
Views: 264

Read every tutorial and you'll learn everything that you have just asked for. Everything except the "make good map" part, you need to know how to model in order to make a good map. You shouldn't need to worry about maps at first I think, you can make them when you'll have your game engine...
by CodeDragon
Sun Oct 17, 2010 8:54 am
Forum: Beginners Help
Topic: Need Help, I'm new to Irrlight
Replies: 3
Views: 264

Need Help, I'm new to Irrlight

Hello, I'm CodeDragon and am new to game development. I have a few questions: - How can I make players hit each other with guns etc.. , How can I check if the bullit (Which is in the air) hits him/her. - How can I make a good map? - How can I store textures in a variable for pre-loading? - How can I...