Skip to content

Commit

Permalink
change example to gears
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Oct 25, 2024
1 parent 6a3bb0e commit 72815e0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
import com.github.xpenatan.gdx.backends.teavm.TeaApplication;
import com.github.xpenatan.gdx.backends.teavm.TeaApplicationConfiguration;
import com.github.xpenatan.gdx.examples.tests.GLTFQuickStartExample;
import com.github.xpenatan.gdx.examples.tests.GearsDemo;
import com.github.xpenatan.gdx.examples.tests.LoadingTest;
import com.github.xpenatan.gdx.examples.tests.PixelTest;

public class TeaVMTestLauncher {

Expand All @@ -14,6 +16,8 @@ public static void main(String[] args) {
config.showDownloadLogs = true;
config.preloadAssets = true;
// new TeaApplication(new LoadingTest(), config);
new TeaApplication(new GLTFQuickStartExample(), config);
// new TeaApplication(new GLTFQuickStartExample(), config);
// new TeaApplication(new PixelTest(), config);
new TeaApplication(new GearsDemo(), config);
}
}

0 comments on commit 72815e0

Please sign in to comment.