| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 1.12.1-rc1.zip | 2023-11-04 | 10.1 MB | |
| KTX 1.12.1-rc1 source code.tar.gz | 2023-11-04 | 1.1 MB | |
| KTX 1.12.1-rc1 source code.zip | 2023-11-04 | 1.3 MB | |
| README.md | 2023-11-04 | 998 Bytes | |
| Totals: 4 Items | 12.5 MB | 0 | |
The first release to support libGDX 1.12.1.
- [UPDATE] Updated to libGDX 1.12.1.
- [UPDATE] Updated to Kotlin 1.9.20.
- [UPDATE] Updated to Kotlin Coroutines 1.7.3.
- [UPDATE] Updated to VisUI 1.5.3.
- [UPDATE] Updated to Dokka 1.9.10.
- [FEATURE] (
ktx-math) New extension and factory function were introduced toVector4, offering similar utilities to other vectors. vec4factory methods allow creating newVector4instances with default and named parameters.+=,-=,*=,/=mutating operators are now supported.+,-(including unary-),++,--,*,/operators are now supported, returning new instances of vectors as a result.- Vectors are now comparable by length, adding support for
<,>,<=,>=operators. Vector4instances can now be deconstructed into 4 four values (X, Y, Z, W) using extension component methods.dotinfix function allows calculating the dot product of 2 vectors.