Updated Libgdx to a newer version to add gui to the game. This sadly broke the player sprite :/

This commit is contained in:
2020-04-11 07:55:19 -06:00
parent d6c54921d8
commit 57f806983e
80 changed files with 812 additions and 513 deletions

View File

@@ -1,8 +1,23 @@
apply plugin: "java"
sourceCompatibility = 1.7
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'
sourceSets.main.java.srcDirs = [ "src/" ]
eclipse.project.name = appName + "-core"
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.badlogicgames.gdx:gdx-ai:$aiVersion"
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
api "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
api "com.badlogicgames.ashley:ashley:$ashleyVersion"
api "com.badlogicgames.box2dlights:box2dlights:$box2dlightsVersion"
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
api "com.badlogicgames.gdx:gdx-bullet:$gdxVersion"
api "com.github.czyzby:noise4j:$noise4jVersion"
api "com.github.ykrasik:jaci-libgdx-cli-gwt:$jaciGwtVersion"
api "com.sudoplay.joise:joise:$joiseVersion"
api "com.github.czyzby:gdx-kiwi:$kiwiVersion"
api "de.tomgrill.gdxdialogs:gdx-dialogs-core:$dialogsVersion"
api "com.strongjoshua:libgdx-inGameConsole:$inGameConsoleVersion"
api "net.dermetfan.libgdx-utils:libgdx-utils:$utilsVersion"
api "net.dermetfan.libgdx-utils:libgdx-utils-box2d:$utilsBox2dVersion"
api "com.underwaterapps.overlap2druntime:overlap2d-runtime-libgdx:$overlap2dVersion"
api "com.github.ykrasik:jaci-libgdx-cli-java:$jaciVersion"
}