This site requires JavaScript, please enable it in your browser!
Greenfoot back
anant.gaggar
anant.gaggar wrote ...

2013/9/4

Java High Level Programming

anant.gaggar anant.gaggar

2013/9/4

#
Hi people.I am curious to know as a beginner in java programming is it possible to build games like Ubisofts Batman or assassins creed revelation
davmac davmac

2013/9/4

#
It is theoretically possible, but usually games like that are written in C++. You would need to use some sort of 3D library to make games like that with Java.
JetLennit JetLennit

2013/9/4

#
There is also JMonkey. And i think that javaFX can fo it but i haven't worked with that.
mjrb4 mjrb4

2013/9/4

#
JavaFX can do some (limited) 3D stuff, but isn't yet anywhere near the level where you would sensibly create a full 3D game with it - pretty much the only sensible option (at the scenegraph API level anyway) is JMonkey. Though as Davin said, comparatively few games of this type are created in Java - native languages such as C++ / C# are the usual choices (and indeed pretty much every Java 3D library delegates to native code at some point, otherwise it couldn't take advantage of any hardware acceleration.)
You need to login to post a reply.