-
|
What is the selling point of using LittleKt over other frameworks out there? e.g. KorGE which shares similar philosophy or the battle tested LibGDX(LibKTX)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
I would say the selling point on using it over Korge and LibGDX is if you are looking for a multiplatform Kotlin based game framework that is lightweight and low level enough to be able to build your own engine / framework on top of it without being stuck doing it a certain way but high level enough to not have to deal with all the low level graphics related coding. Along with getting the full benefits of the Kotlin language. Korge is great but too high level and not as flexible to be able to build it the way you want. But for a more concrete game engine then it's great to use. LibGDX is great that allows you to build it the way you want but doesn't allow you to target the web when using Kotlin along with it all being built in Java. I know LibKTX helps with the Java problem but doesn't help with the web issue. If those aren't an issue then libGDX would probably be a good choice. As an example, I built my own framework on top of LittleKt which makes it a little more concrete on how to build a game with it. This is my personal way I wanted to build a game but not the way it has to be done. https://github.com/LeHaine/rune-kt |
Beta Was this translation helpful? Give feedback.
I would say the selling point on using it over Korge and LibGDX is if you are looking for a multiplatform Kotlin based game framework that is lightweight and low level enough to be able to build your own engine / framework on top of it without being stuck doing it a certain way but high level enough to not have to deal with all the low level graphics related coding. Along with getting the full benefits of the Kotlin language.
Korge is great but too high level and not as flexible to be able to build it the way you want. But for a more concrete game engine then it's great to use.
LibGDX is great that allows you to build it the way you want but doesn't allow you to target the web when using …