https://github.com/andreainfufsm/java-libgdx-extended-drop-example
https://github.com/andreainfufsm/java-libgdx-extended-drop-example
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreainfufsm/java-libgdx-extended-drop-example
- Owner: AndreaInfUFSM
- Created: 2019-05-24T21:03:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-04T21:50:24.000Z (over 1 year ago)
- Last Synced: 2025-05-07T19:09:54.628Z (about 1 year ago)
- Language: Java
- Size: 3.8 MB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libGDX example: a simple game
A simple game from the libGDX wiki tutorials.
## Links
- Demo: https://libgdx.com/wiki/start/a-simple-game
- Source code: https://github.com/libgdx/libgdx-wiki-examples/tree/master/a-simple-game
## Running on GitHub Codespaces
1. Click on 'Code', select 'Codespaces' and click '+' to create a Codespace on master
2. In the terminal of the recently created Codespace:
1. Update the Java version
```
sdk install java 17.0.8-tem
sdk default java 17.0.8-tem
```
2. Go to the project folder
```
cd gdx-1.13.0/a-simple-game
```
3. Build the HTML project
```
./gradlew html:dist
```
4. Run the HTML project
```
cd html/build/dist
python -m http.server
```