Currently in development.
Features - Docs - Samples - Ask a Question - Changelog - Starter Project
LittleKt (Little Kotlin) is a Kotlin multiplatform 2D game development framework based on OpenGL that is inspired by libGDX and KorGE. The goal of this project is to allow the freedom and flexibility that libGDX offers with enjoyable idiomatic features coded in Kotlin that KorGE has to offer.
Check out some planned features
LittleKt releases are hosted on Maven Central and can be installed like so:
build.gradle.kts:
repositories {
mavenCentral()
}
kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "11" // littlekt targets jvm 11 so we must target atleast 11
}
}
}
val littleKtVersion = "0.2.0" // get the latest release at the top
val kotlinCoroutinesVersion = "1.6.0" // or whatever version you are using
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.lehaine.littlekt:core:$littleKtVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion") // littlekt requires coroutines library on the classpath
}
}
}
On every build a snapshot gets created. If you want to be on the bleeding edge then you can pull from the snapshot repo.
The snapshot versioning uses commit hashes as a suffix. The version convention looks like so: x.x.x.hash-SNAPSHOT
.
E.g 0.2.1.080b1ad-SNAPSHOT
.
Note: this will most likely cause breaking changes
build.gradle.kts:
repositories {
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "11" // littlekt targets jvm 11 so we must target atleast 11
}
}
}
val littleKtVersion = "0.3.0.ed0803a-SNAPSHOT" // or whichever hash you are using
val kotlinCoroutinesVersion = "1.6.0" // or whatever version you are using
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.lehaine.littlekt:core:$littleKtVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion") // littlekt requires coroutines library on the classpath
}
}
}
Platform | Support | Expected By |
---|---|---|
Desktop (JVM) | ✅ | Current version |
Web (WebGL/2) | ✅ | Current version |
Android | ✅ | Current version |
iOS | Planned | v1.0 |
Desktop (Native) | -- | Long Term |
LittleKt was put together based on bits and pieces of features found across multiple engines/frameworks and languages that were very enjoyable to use and flexible. If a piece a code looks familiar, feel free to open an issue with details, so that we can properly attribute the code.
A big thanks to the folks over on libGDX and KTX, KorGE, and MiniGDX.
The very popular and amazing libGDX which is the main inspiration of this framework as well as the Kotlin framework KTX for the clever and awesome utilites and extensions built on top of libGDX.
Carlos Velasco's (soywiz) awesome Kotlin game engine KorGE which has a bunch of very enjoyable features and awesome ideas that were brought over to be used in LittleKt.
David Wursteisen's excellent multiplatform game framework MiniGDX that allowed LittleKt to get up and running quickly.