mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-13 09:26:11 -04:00
fix some language grammar
This commit is contained in:
parent
da72408b9e
commit
ab525b7d27
@ -22,7 +22,7 @@ The whole render system gets loaded, as soon as you tell eros to connect to a se
|
|||||||
|
|
||||||
Textures that don't get modified anymore (like block textures or items).
|
Textures that don't get modified anymore (like block textures or items).
|
||||||
The textures are stored in 5 dimensional way (2d for x and y coordinates, 1d for the texture index (aka. what texture), 1d for the resolution (like `16x16` or `32x32`) and the last dimension for mipmaps).
|
The textures are stored in 5 dimensional way (2d for x and y coordinates, 1d for the texture index (aka. what texture), 1d for the resolution (like `16x16` or `32x32`) and the last dimension for mipmaps).
|
||||||
Every vertex can have an additional animation id, that is done via a uniform buffer.
|
Every vertex can have an additional animation id, that is done via an uniform buffer.
|
||||||
|
|
||||||
### Dynamic textures
|
### Dynamic textures
|
||||||
|
|
||||||
|
@ -29,9 +29,9 @@ data class SizeOverride(
|
|||||||
val string = this!!.toString()
|
val string = this!!.toString()
|
||||||
val iterator = string.codePoints().iterator()
|
val iterator = string.codePoints().iterator()
|
||||||
|
|
||||||
if (!iterator.hasNext()) throw IllegalArgumentException("Not a unicode string $this")
|
if (!iterator.hasNext()) throw IllegalArgumentException("Not an unicode string $this")
|
||||||
val code = iterator.nextInt()
|
val code = iterator.nextInt()
|
||||||
if (iterator.hasNext()) throw IllegalArgumentException("Not a unicode string $this")
|
if (iterator.hasNext()) throw IllegalArgumentException("Not an unicode string $this")
|
||||||
|
|
||||||
return code
|
return code
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user