Fixed issues after upgrade to the new version of the Pixel api

This commit is contained in:
Robert Vokac 2024-10-18 17:43:51 +02:00
parent c6c044dd89
commit f3a3df7663
Signed by: robertvokac
GPG Key ID: FB9CE8E20AADA55F
4 changed files with 8 additions and 3 deletions

View File

@ -79,6 +79,9 @@ public class OpenEggbertGame extends GameAdapter {
}
System.out.println("Found group " + embeddedModGroup.name());
for (File embeddedMod : embeddedModGroup.list()) {
if (embeddedMod.name().equals("README.md")) {
continue;
}
System.out.println("Found mod " + embeddedMod.name());
File modXml = null;

View File

@ -55,7 +55,8 @@ dependencies {
implementation("com.badlogicgames.gdx-controllers:gdx-controllers-gwt:$gdxControllersVersion:sources"){exclude group: "com.badlogicgames.gdx", module: "gdx-backend-gwt"}
implementation("com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources") {exclude group: "com.google.gwt", module: "gwt-user"}
implementation("com.github.crykn.guacamole:gdx-gwt:$guacamoleVersion:sources"){exclude group: "com.badlogicgames.gdx", module: "gdx-backend-gwt"}
implementation "space.earlygrey:shapedrawer:$shapeDrawerVersion:sources"
}
import org.akhikhl.gretty.AppBeforeIntegrationTestTask

View File

@ -29,6 +29,7 @@
<inherits name="guacamole_gdx_gwt" />
<inherits name="libgdx-utils" />
<inherits name="libgdx-utils-box2d" />
<inherits name="space.earlygrey.shapedrawer"/>
<!-- You must change this if you rename packages later, or rename GwtLauncher. -->
<entry-point class="com.openeggbert.gwt.GwtLauncher" />

File diff suppressed because one or more lines are too long