summaryrefslogtreecommitdiff
path: root/scene/2d/tile_map.h
diff options
context:
space:
mode:
authorPatrick Reh <musicmylove@gmx.net>2016-06-18 00:01:00 +0200
committerpatrick <musicmylove@gmx.net>2016-06-20 12:18:53 +0200
commitfff4d5867ce8ae69cd5699a55f7617edb3015f0f (patch)
treef0b927982eb1ada8b6796f58e027dc09f14dd6a0 /scene/2d/tile_map.h
parenta1a57bc369de01cbb2295b403d84ec5fac210020 (diff)
Added Tile Origin = Bottom Left option to the TileMap
Diffstat (limited to 'scene/2d/tile_map.h')
-rw-r--r--scene/2d/tile_map.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/2d/tile_map.h b/scene/2d/tile_map.h
index cec5ac0a1b..b48fdde43f 100644
--- a/scene/2d/tile_map.h
+++ b/scene/2d/tile_map.h
@@ -54,7 +54,8 @@ public:
enum TileOrigin {
TILE_ORIGIN_TOP_LEFT,
- TILE_ORIGIN_CENTER
+ TILE_ORIGIN_CENTER,
+ TILE_ORIGIN_BOTTOM_LEFT
};