Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laxystem/spock
Kotlin/Multiplatform WebGpu Concurrent Game Engine
https://github.com/laxystem/spock
game-development game-engine kotlin kotlin-multiplatform webassembly webgpu wgpu
Last synced: about 1 month ago
JSON representation
Kotlin/Multiplatform WebGpu Concurrent Game Engine
- Host: GitHub
- URL: https://github.com/laxystem/spock
- Owner: Laxystem
- License: mpl-2.0
- Created: 2024-12-22T15:52:03.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-22T19:32:18.000Z (about 2 months ago)
- Last Synced: 2024-12-22T20:25:06.713Z (about 2 months ago)
- Topics: game-development, game-engine, kotlin, kotlin-multiplatform, webassembly, webgpu, wgpu
- Language: Kotlin
- Homepage: https://github.laxla.quest/Spock/
- Size: 503 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Spock Game Engine
> [!CAUTION]
> Spock is in alpha.
> Backwards compatibility is intended but not guaranteed.## Maven
All modules are available on maven central.
```kotlin
// build.gradle.ktsrepositories.mavenCentral()
val spock: String by properties
dependencies {
// core
implementation("quest.laxla:spock:$spock")// any other module, e.g. util
implementation("quest.laxla:spock-util:$spock")
}
```