summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game/hud
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2015-11-09 22:30:58 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2015-11-09 22:30:58 +0100
commit8f4b73804f0958c020f6304795ffea916a907028 (patch)
tree5d2a91981485e2554f69e478f9b3bc48aa701eda /core/src/ch/asynk/rustanddust/game/hud
parentf041e267040ee6c777df95829eb5558e47af9ef2 (diff)
downloadRustAndDust-8f4b73804f0958c020f6304795ffea916a907028.zip
RustAndDust-8f4b73804f0958c020f6304795ffea916a907028.tar.gz
UnitDock: add setScale(float)
Diffstat (limited to 'core/src/ch/asynk/rustanddust/game/hud')
-rw-r--r--core/src/ch/asynk/rustanddust/game/hud/UnitDock.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/hud/UnitDock.java b/core/src/ch/asynk/rustanddust/game/hud/UnitDock.java
index 41388ec..fe73e27 100644
--- a/core/src/ch/asynk/rustanddust/game/hud/UnitDock.java
+++ b/core/src/ch/asynk/rustanddust/game/hud/UnitDock.java
@@ -58,7 +58,11 @@ public class UnitDock extends Bg implements Animation
this.visible = false;
this.dx = 0f;
this.dy = 0f;
- SCALE = Math.max((Gdx.graphics.getHeight() * 0.0005f), 0.4f);
+ }
+
+ public static void setScale(float scale)
+ {
+ SCALE = scale;
}
@Override