Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ushiosan23/gdl_utils
Utilities to create a multi-version game management and execution application from Godot engine.
https://github.com/ushiosan23/gdl_utils
godot java utilities
Last synced: 1 day ago
JSON representation
Utilities to create a multi-version game management and execution application from Godot engine.
- Host: GitHub
- URL: https://github.com/ushiosan23/gdl_utils
- Owner: Ushiosan23
- License: mit
- Created: 2021-10-12T06:05:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-14T07:47:20.000Z (over 3 years ago)
- Last Synced: 2024-12-21T14:22:55.885Z (about 2 months ago)
- Topics: godot, java, utilities
- Language: Java
- Homepage:
- Size: 66.4 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Godot Launcher Utilities (gdl_utils)
## Javadoc
[![javadoc](https://javadoc.io/badge2/com.github.ushiosan23/gdl_utils/javadoc.svg)](https://javadoc.io/doc/com.github.ushiosan23/gdl_utils)## Versions
See all changelog: [here](./CHANGELOG.md)
- [0.2.0](https://github.com/Ushiosan23/gdl_utils/releases/tag/v0.2.0) __(Latest)__
- [0.1.0](https://github.com/Ushiosan23/gdl_utils/releases/tag/v0.1.0)## Maven project
```xml
com.github.ushiosan23
gdl_utils
x.x.x
```
## Gradle project
### Groovy DSL
```groovy
// build.gradledependencies {
implementation 'com.github.ushiosan23:gdl_utils:x.x.x'
/* Another dependencies */
}
```### Kotlin DSL
```kotlin
// build.gradle.ktsdependencies {
implementation("com.github.ushiosan23:gdl_utils:x.x.x")
/* Another dependencies */
}
```