From 324fce116cc8daacf64ba49ecc8a2b833aaf4a40 Mon Sep 17 00:00:00 2001 From: tom barrett Date: Sat, 22 Jun 2019 06:36:40 -0500 Subject: reordered layers, now added rotation of tiles, fixed tileset mapping bug --- src/constants.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/constants.rs') diff --git a/src/constants.rs b/src/constants.rs index 1af4324..367e595 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -3,3 +3,9 @@ pub const TILE_HEIGHT: f32 = 16.0; pub const TILE_SCALE: f32 = 3.0; pub const PLAYER_SPEED: f32 = 5.0; + +pub const FLIP_HORIZONTALLY_FLAG: u32 = 0x8000_0000; +pub const FLIP_VERTICALLY_FLAG: u32 = 0x4000_0000; +pub const FLIP_DIAGONALLY_FLAG: u32 = 0x2000_0000; +pub const ALL_FLIP_FLAGS: u32 = + FLIP_DIAGONALLY_FLAG | FLIP_HORIZONTALLY_FLAG | FLIP_VERTICALLY_FLAG; -- cgit v1.2.3