0

I know this must be one of the many question around the same topic. But, i want clear mind and new eyes in this.

I am beginning to grasp java for game development for pc and tablet; i cant use unity 3D to i ask for help in choosing a game engine for ubuntu using java as is primary language. I look around and there a lot i just want to narrow it down a bit.

Thanks in advance and hope for your advice :)

user253350
  • 35
  • 1
  • 3

1 Answers1

0

The best - and only - Java game engine I know would be LWJGL.

This stands for Lightweight Java Game Library. It is a implementation of OpenGL, OpenAL and OpenCL, which are themselfs written in C.

But Java itself is rather unusual and unrecommendated for creating 3D games. It brings a huge loss in performance due to the realtime interpretation of the Java Byte Code.

You may have a look at C++ instead.

s3lph
  • 14,118
  • 11
  • 57
  • 82