1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

6d facedir

This commit is contained in:
RealBadAngel 2013-03-23 19:17:00 +01:00 committed by PilzAdam
parent 2318d19bb4
commit 6f8d40ef5d
5 changed files with 335 additions and 86 deletions

View file

@ -205,7 +205,8 @@ struct TileSpec
texture == other.texture &&
alpha == other.alpha &&
material_type == other.material_type &&
material_flags == other.material_flags
material_flags == other.material_flags &&
rotation == other.rotation
);
}
@ -264,6 +265,7 @@ struct TileSpec
// Animation parameters
u8 animation_frame_count;
u16 animation_frame_length_ms;
u8 rotation;
};
#endif