Luaj is a lua interpreter based on the 5.2.x version of lua which allows you to execute lua from inside java, compile lua to lua bytecode and compile lua to java bytecode. It is used in many games to allows players to create and add mods to a game. A list of some games can […]
Month: September 2016
- Java
- ...
Updating Block Breaker – Power Ups

Block Breaker is a game I’m currently developing. It’s a simple game where you have to use a paddle to bounce a ball into bricks to destroy them. The game was working and had only 1 feature which was to hit a brick with a ball and collect the brick with the paddle. I wanted […]
Simplex Noise – Generating Random Terrain.

I had an idea for a game and wanted to see if I was able to make some random terrain for it. So I decided to look into making some random terrain using the Perlin noise as I knew minecraft uses this in it’s terrain generation. while looking into the Perlin noise I discovered a […]