Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2018-04-27 23:43:32 -04:00
62 changed files with 8 additions and 6 deletions

BIN
core/assets/music/1.mp3 Normal file

Binary file not shown.

Binary file not shown.

BIN
core/assets/music/2.mp3 Normal file

Binary file not shown.

Binary file not shown.

BIN
core/assets/music/3.mp3 Normal file

Binary file not shown.

Binary file not shown.

BIN
core/assets/music/4.mp3 Normal file

Binary file not shown.

Binary file not shown.

BIN
core/assets/sounds/bang.mp3 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
core/assets/sounds/die.mp3 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
core/assets/sounds/ping.mp3 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -95,14 +95,14 @@ public class Control extends Module{
item.init(); item.init();
} }
Sounds.load("shoot.ogg", "place.ogg", "explosion.ogg", "enemyshoot.ogg", Sounds.load("shoot.mp3", "place.mp3", "explosion.mp3", "enemyshoot.mp3",
"corexplode.ogg", "break.ogg", "spawn.ogg", "flame.ogg", "die.ogg", "corexplode.mp3", "break.mp3", "spawn.mp3", "flame.mp3", "die.mp3",
"respawn.ogg", "purchase.ogg", "flame2.ogg", "bigshot.ogg", "laser.ogg", "lasershot.ogg", "respawn.mp3", "purchase.mp3", "flame2.mp3", "bigshot.mp3", "laser.mp3", "lasershot.mp3",
"ping.ogg", "tesla.ogg", "waveend.ogg", "railgun.ogg", "blast.ogg", "bang2.ogg"); "ping.mp3", "tesla.mp3", "waveend.mp3", "railgun.mp3", "blast.mp3", "bang2.mp3");
Sounds.setFalloff(9000f); Sounds.setFalloff(9000f);
Musics.load("1.ogg", "2.ogg", "3.ogg", "4.ogg"); Musics.load("1.mp3", "2.mp3", "3.mp3", "4.mp3");
DefaultKeybinds.load(); DefaultKeybinds.load();

View File

@@ -56,7 +56,9 @@ task run(dependsOn: classes, type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath classpath = sourceSets.main.runtimeClasspath
standardInput = System.in standardInput = System.in
workingDir = project.assetsDir workingDir = project.assetsDir
jvmArgs "-XstartOnFirstThread" if(System.getProperty("os.name").toLowerCase().contains("mac")){
jvmArgs "-XstartOnFirstThread"
}
ignoreExitValue = true ignoreExitValue = true
if (project.hasProperty("appArgs")) { if (project.hasProperty("appArgs")) {
args Eval.me(appArgs) args Eval.me(appArgs)