https://github.com/apiorno/cards-gdx
Micro framework on top of Libgdx to make 3D card games with any deck type using Kotlin
https://github.com/apiorno/cards-gdx
Last synced: about 2 months ago
JSON representation
Micro framework on top of Libgdx to make 3D card games with any deck type using Kotlin
- Host: GitHub
- URL: https://github.com/apiorno/cards-gdx
- Owner: apiorno
- License: mit
- Created: 2020-07-08T00:49:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-09T03:11:06.000Z (almost 5 years ago)
- Last Synced: 2025-02-11T12:21:20.687Z (4 months ago)
- Language: Kotlin
- Size: 1.21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimpleCardAnimation3D
A [LibGDX](http://libgdx.badlogicgames.com/) project generated with [gdx-liftoff](https://github.com/tommyettinger/gdx-liftoff).
Project template includes simple launchers and a `Game` extension that sets the first screen.
## Gradle
This project uses [Gradle](http://gradle.org/) to manage dependencies. Gradle wrapper was included, so you can run Gradle tasks using `gradlew.bat` or `./gradlew` commands. Useful Gradle tasks and flags:
- `--continue`: when using this flag, errors will not stop the tasks from running.
- `--daemon`: thanks to this flag, Gradle daemon will be used to run chosen tasks.
- `--offline`: when using this flag, cached dependency archives will be used.
- `--refresh-dependencies`: this flag forces validation of all dependencies. Useful for snapshot versions.
- `build`: builds sources and archives of every project.
- `cleanEclipse`: removes Eclipse project data.
- `cleanIdea`: removes IntelliJ project data.
- `clean`: removes `build` folders, which store compiled classes and built archives.
- `eclipse`: generates Eclipse project data.
- `idea`: generates IntelliJ project data.
- `lwjgl3:jar`: builds application's runnable jar, which can be found at `lwjgl3/build/libs`.
- `lwjgl3:run`: starts the application.
- `test`: runs unit tests (if any).Note that most tasks that are not specific to a single project can be run with `name:` prefix, where the `name` should be replaced with the ID of a specific project.
For example, `core:clean` removes `build` folder only from the `core` project.