Skip to content

An online tank game in Java with LibGDX, inspired by ShellShock Live

Notifications You must be signed in to change notification settings

YetiHafen/JellShockLive

Repository files navigation

JellShockLive

Server

Database

Rename .env.example to .env and implement credentials

Map

Generating Maps

Examples:

Level 1:

for (int i = 0; i < Map.DEFAULT_MAP_SIZE; i++) {
        pixels[i] = (int) (Math.cos(((double) i / width) * 2 * Math.PI) * 200) + 400;
}

Level 4:

for (int i = 0; i < Map.DEFAULT_MAP_SIZE; i++) {
    pixels[i] = (int) (2 * Math.cos(((double) i / width) * Math.PI * 5) * 100) + 300;
}

About

An online tank game in Java with LibGDX, inspired by ShellShock Live

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •