Search found 19 matches

by FrSl
Mon Jun 19, 2006 7:30 am
Forum: Project Announcements
Topic: Bolzplatz 2006 / Slam Soccer 2006
Replies: 13
Views: 4949

Great project!

I like soccer games and this one is really fun to play, especially 1on1! :D
by FrSl
Wed Apr 26, 2006 9:21 pm
Forum: Project Announcements
Topic: SUPREMACY ERRANDS - v1.6
Replies: 178
Views: 45078

Hehe, great demo :)

There are already a lot of different buildings which look nice and also the road and signs/trees look nice. I'm looking forward to the official final release! :D

Keep up the good work & good luck 8)
by FrSl
Mon Apr 17, 2006 9:58 am
Forum: Beginners Help
Topic: Smooth rotation - question
Replies: 5
Views: 426

You need to code a smooth rotation yourself i think, something like this: while(device->run()) //main loop { rotationDone = false; while( ship->getRotation()->getX() < angleYouWant && !rotationDone) { core::vector3df smoothRotation = core::vector3df(0.01*3.14, 0, 0); ship->setRotation(ship->...
by FrSl
Sat Apr 15, 2006 5:08 pm
Forum: Beginners Help
Topic: Why won't my game run on other computers???
Replies: 7
Views: 481

Some more info could help indeed,

If the program is starting up and shutting down directly after that then you probably forgot 'Irrlicht.dll', just include it in the same directory of you're .exe and then it will do something more.

EDIT: Then this is the solution :P
by FrSl
Sat Apr 15, 2006 4:24 pm
Forum: Off-topic
Topic: A math problem with the rotation of a single ball.
Replies: 8
Views: 1217

I also don't understand the dot product. What is the intention? In java the * operator is not working for quaternions that's why i used the getDotProduct function; --- But I'm sorry, but i still can't get it working :oops: I changed the HelloWorld tutorial a bit to make the code small and easy to r...
by FrSl
Fri Apr 14, 2006 10:09 am
Forum: Open Discussion and Dev Announcements
Topic: My first blog post about IRR!
Replies: 14
Views: 1042

Very nice chromdragon! Keep up the good work :wink:
by FrSl
Fri Apr 14, 2006 10:05 am
Forum: Off-topic
Topic: A math problem with the rotation of a single ball.
Replies: 8
Views: 1217

Hello, i understand the things of the wiki and also understand you're story but i can't get it working in irrlicht :roll: So, i hope you can help me out 1 more time :P My idea was to create a 'simple'(not for me) rotation first. A 45deg degree movement to the left. I made 2 pictures to explain the v...
by FrSl
Thu Apr 13, 2006 5:57 pm
Forum: Advanced Help
Topic: Improving rendering quality with loaded model files
Replies: 11
Views: 954

Thanks Vermeer! That was a good max tutorial for me. It was indeed a problem in the mesh.
You're help saved me a lot of time, or else i would have searched for this problem in the engine :roll: because without light the balls look smooth, so i was thinking of a wrong set flag somewhere. :P
by FrSl
Thu Apr 13, 2006 11:11 am
Forum: Advanced Help
Topic: Improving rendering quality with loaded model files
Replies: 11
Views: 954

Thanks for the help Vermeer, I'm only a basic 3ds max user and don't know all the features. I'm not at home now, but i'll try it when i'm at home this evening. [offtopic] to huge table The idea was to create a snooker game, a snooker table is bigger then a pool table(the table is created with 100% w...
by FrSl
Thu Apr 13, 2006 8:09 am
Forum: Advanced Help
Topic: Improving rendering quality with loaded model files
Replies: 11
Views: 954

Yes, I have this problem too,

Didn't had the time to sort it out yet but my round balls in my current snooker project have the same problems. They look more like golf balls now :P

Image

It's probably only changing 1 or 2 flags, but which one. :roll:
by FrSl
Wed Apr 12, 2006 8:58 pm
Forum: Off-topic
Topic: A math problem with the rotation of a single ball.
Replies: 8
Views: 1217

Great help Baal Cadar!

The wiki page looks very useful, I'll read it to understand those quaternions. :)
by FrSl
Wed Apr 12, 2006 8:03 pm
Forum: Off-topic
Topic: A math problem with the rotation of a single ball.
Replies: 8
Views: 1217

Thanks for the help Baal Cadar! It doesn't sound to hard, but it will take some time for me to find out how those matrixes work... :lol: About the physic library, I don't think that i'll use 1 for this project, most of the calculations are allready done. (ball collision detection and table bouncing ...
by FrSl
Wed Apr 12, 2006 3:47 pm
Forum: Off-topic
Topic: A math problem with the rotation of a single ball.
Replies: 8
Views: 1217

A math problem with the rotation of a single ball.

Hello coders, I'm working on a snooker game at this moment, but i've a mathematical problem now and i hope that someone can help me with this problem. The code is in Java irrlicht(Jirr) because i'm better in java, but i think that it's good understandable for someone with c experience. What I have n...
by FrSl
Fri Feb 03, 2006 11:15 am
Forum: Beginners Help
Topic: Problem with my mouse event receiver
Replies: 3
Views: 459

I found the problem with the event receiver! When you set the EventReceiver before the first frame then IrrLicht will create more then 1 event... The first frame event where the mouse is Moved from 0,0 to it's current position and all the other mousemovements of the user. That causes for strange beh...
by FrSl
Thu Feb 02, 2006 10:18 pm
Forum: Beginners Help
Topic: Problem with my mouse event receiver
Replies: 3
Views: 459

Ok,

Then I try to create the camera movement without the event receiver...

Thank you for the code :)