Tiny World is a personal custom game engine created with Java and OpenGL for fun.
To run the project make sure you have have:
- Windows 8+: Windows 7 should work too, but was not tested.
- JDK 8+: You can download Oracle JDK from their wesbite.
Then download the game.zip, extract it and run the game.jar with double-click.
Controls are: WASD and mouse for movement, press T to toggle wireframe mode.
Video preview.
In case you want to run the project from source code follow these steps.
Prerequisite
- Make sure you have installed IntelliJ IDEA (the “Community” edition is sufficient)
Then,
- Clone the repository.
- Open in IntelliJ IDEA as a project.
- Make sure Gradle is synced. Firs time it may take several minutes to sync the project.
- Add new Run/Debug Configuration.
- Main class: select am.aua.game.Game as the main class.
- Working directory: select the 'assets' folder in './src/assets'.
- Use classpath of the module: tiny-world-java.main
- Run the created configuration.