Keyboard event mode for key release detection.

ToyGraphics v0.8.6.5 supports new keyboard mode allowing you to detect not only when the user pressed a key but also when they released it. You can read ToyGraphics guide and look at the demonstrations: https://github.com/anysolo/toyGraphics-demos/blob/master/src/main/kotlin/demos/animation2.kt https://github.com/anysolo/toyGraphics-demos/blob/master/src/main/kotlin/demos/keyboard4.kt

Rotating images.

Starting from version 0.8.2, ToyGraphics library supports drawing rotated images. Please check guide and API doc. Bellow an example: package com.anysolo.toyGraphics.samples import com.anysolo.toyGraphics.* fun main() { val wnd = Window(300, 300, buffered = true, background = Pal16.black) val image = Image(“graphicsFiles/ufo-small.png”) val x = wnd.width/2 – image.width/2 val y = Read more…