Advertisement

Creating a Ball [Video]

Started by October 30, 2012 11:36 PM
3 comments, last by Medo Mex 12 years, 3 months ago
I am using Bullet Physics and trying to create a ball that will be behaving like the ball in the following game:


I need to know how to do it using Bullet Physics, this include (ball rotating while moving, the ball will be always moving straight depending on where the camera is looking it, etc...

Any idea or sample code will be much appreciated.

How do I get started?

ball rotating while moving

I'm not sure but I don't think the ball is actually rotating physics-wise. Sure, it has a rotating marble texture, but I don't think rotational motion is being considered at all in the physics simulation (for good reason - it's very difficult to control a "real" ball with spin, if you've ever played table tennis for instance you'll know that)


the ball will be always moving straight depending on where the camera is looking it

Velocity is already independent of camera position, it's your game engine's job to ensure the camera doesn't somehow influence the ball's velocity - Bullet doesn't even know what a camera is.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”

Advertisement
In physics, when a ball move, it must be rotating as well, so I guess that should be done using Bullet Physics since no ball can be moving without rotating.

I have tried to use body->setLinearVelocity() and I see it's rotating now, but I can't get the ball to behave like the ball in the video.

In physics, when a ball move, it must be rotating as well, so I guess that should be done using Bullet Physics since no ball can be moving without rotating.

I have tried to use body->setLinearVelocity() and I see it's rotating now, but I can't get the ball to behave like the ball in the video.


The latest version of bullet (v2.81) has a rolling friction demo that should be useful.

-Josh

--www.physicaluncertainty.com
--linkedin
--irc.freenode.net#gdnet

Okay, I think I have accomplished a good part, now I am looking to make the ball move forward according to where the camera is looking at, I am also looking to update the camera position to make it follow the ball all the time (exactly as you see in the video).

How do I update body->setLinearVelocity() to make the ball move according to where the camera is look at?
How do I update the camera position x, y, z to make it following the ball? which values I should be setting during the rendering process?

This topic is closed to new replies.

Advertisement