Keybind changes

This commit is contained in:
Anuken
2019-02-13 13:48:18 -05:00
parent 126a764918
commit 1b5b6d424b
2 changed files with 2 additions and 2 deletions

View File

@@ -449,7 +449,7 @@ public class Player extends Unit implements BuilderTrait, ShooterTrait{
Draw.rect(request.block.icon(Icon.full),
request.x * tilesize + request.block.offset(),
request.y * tilesize + request.block.offset(), rad*2, rad*2, request.rotation * 90);
request.y * tilesize + request.block.offset(), rad*2, rad*2, request.block.rotate ? request.rotation * 90 : 0);
Draw.color(Pal.accent);

View File

@@ -18,7 +18,7 @@ public enum Binding implements KeyBind{
pick(KeyCode.MOUSE_MIDDLE),
dash(KeyCode.SHIFT_LEFT),
drop_unit(KeyCode.SHIFT_LEFT),
gridMode(KeyCode.SPACE),
gridMode(KeyCode.GRAVE),
gridModeShift(KeyCode.ALT_LEFT),
zoom_hold(KeyCode.CONTROL_LEFT, "view"),
zoom(new Axis(KeyCode.SCROLL)),