https://youtu.be/xDGy-Hqq9YQ
(kill the obfuscation)
sample 3d engines & sourcecodes
http://jmonkeyengine.org/
which cites: Beginner guide
Cookbook
Practical guide
Thin Matrix hosted a video series about 3d Game Development in Java
The game itself was bleak. This sh*t could remaster the digital aspects like an absolute killer.
Game Maker (https://www.yoyogames.com/gamemaker)
Sample scroll through
Java IDE (Integrated Development Environment)
Java Compiler
//*******************************************************************
// Dear CompileJava users,
//
// CompileJava has been operating since 2013 completely free. If you
// find this site useful, or would otherwise like to contribute, then
// please consider a donation (link in 'More Info' tab) to support
// development of the new CompileJava website (stay tuned!).
//
// Most sincerely, Z.
//*******************************************************************
import java.lang.Math; // headers MUST be above the first class
// one class needs to have a main() method
public class HelloWorld
{
// arguments are passed using the text field below this editor
public static void main(String[] args)
{
OtherClass myObject = new OtherClass("Hello World!");
System.out.print(myObject);
}
}
// you can add other public classes to this editor in any order
public class OtherClass
{
private String message;
private boolean answer = false;
public OtherClass(String input)
{
message = "Why, " + input + " Isn't this something?";
}
public String toString()
{
return message;
}
}
The aim is to remaster Hazordhu in Java