Compare commits

..

No commits in common. "890254a4f9f973c2f72be30dbaa78b8171034d7b" and "d1509333ef2e18b054dfb2eef0a71d96de75782e" have entirely different histories.

2 changed files with 3 additions and 20 deletions

View file

@ -1,17 +0,0 @@
# HexArt
An hex-based paletted image ~~editor~~ creator.
Keys:
- up/down/left/right move cursor
- k/j/h/l move cursor
- z decrement
- x increment
- shift+z step decrement
- shift+x step increment
- a propagating increment
- s propagating decrement [NYI]
- v "visual" mode [partially implemented - not compatible with propagating modes]
- w save
- esc exit (double esc if modified)

View file

@ -293,11 +293,11 @@ function love.update(dt)
backimage:replacePixels(backimagedata) backimage:replacePixels(backimagedata)
end end
end end
ktup('k', imgup) ktup('i', imgup)
ktup('up', imgup) ktup('up', imgup)
ktup('h', imgleft) ktup('j', imgleft)
ktup('left', imgleft) ktup('left', imgleft)
ktup('j', imgdown) ktup('k', imgdown)
ktup('down', imgdown) ktup('down', imgdown)
ktup('l', imgright) ktup('l', imgright)
ktup('right', imgright) ktup('right', imgright)