Hello Guest

JBullet and LWJGL

  • 6 Replies
  • 14371 Views
*

Offline abcdef

  • ****
  • 336
JBullet and LWJGL
« on: July 04, 2012, 13:19:13 »
Hi

Just wondering if people are using JBullet with LWJGL and if there are any tutorials to give new JBullet people an idea of how to start up.

I had a quick scout on google and couldn't see much (there seemed to be some youtube video's but I can't check them at the moment (at work))

I'd specifically like to use it for collission detection

Any help would be great, if not I'll try and dive in by looking at the c++ tutorials

Thanks

abcdef

*

Offline kappa

  • *****
  • 1319
Re: JBullet and LWJGL
« Reply #1 on: July 04, 2012, 13:40:14 »
Maybe this tutorial will help.

*

Offline abcdef

  • ****
  • 336
Re: JBullet and LWJGL
« Reply #2 on: July 04, 2012, 19:21:17 »
Thanks for the tutorial link but the demo was primarily JBox2D and LWJGL. I think I'll check out some of the c++ demo's and adapt. I'll post a sample bit of code if I get it working

Re: JBullet and LWJGL
« Reply #3 on: July 04, 2012, 21:28:19 »
Do you just want to use it for collision detection? Using a full-fledged physics library might be overkill if that's the case.

*

Offline abcdef

  • ****
  • 336
Re: JBullet and LWJGL
« Reply #4 on: July 05, 2012, 03:47:42 »
To start with yes but I'd like to use it more and more in the future, I thought I would start easy with just basic collision and then do some simple jumping before moving on to some rigid body skeleton physics

Re: JBullet and LWJGL
« Reply #5 on: January 18, 2013, 20:28:01 »
Im using JBullet in my current game engine im building.

I have gravity, ridigbodies and ground working.
The engine currently has a test mode where spawning new models / bodies is allowed and playing with the physics on screen is accomplished.

If your still going down this path let me know.
(if your further than i am down the path of JBullet.. also let me know ;) )

J.

*

Offline abcdef

  • ****
  • 336
Re: JBullet and LWJGL
« Reply #6 on: January 21, 2013, 10:59:28 »
Hi

I decided to change path and do collission's seperately out of JBullet, when getting a frustrum and view ray for culling and picking I will have essentially the right details to do intersections with collision objects. The animations I have are also pre calculate with the landscape so I won't have to calculate anything there

Good luck on your JBullet stuff though, I might still use it in the future