From 66e65898838e3d5d40dfb225fd6c34f0f354b2e3 Mon Sep 17 00:00:00 2001 From: Gargaj Date: Tue, 10 Nov 2015 14:02:07 +0100 Subject: blockheight mechanism --- src/BlockInfo.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/BlockInfo.h') diff --git a/src/BlockInfo.h b/src/BlockInfo.h index 4709f2357..9f562e531 100644 --- a/src/BlockInfo.h +++ b/src/BlockInfo.h @@ -61,6 +61,9 @@ public: /** Can a finisher change it? */ bool m_CanBeTerraformed; + /** Block height */ + float m_BlockHeight; + /** Sound when placing this block */ AString m_PlaceSound; @@ -80,6 +83,7 @@ public: inline static bool IsSolid (BLOCKTYPE a_Type) { return Get(a_Type).m_IsSolid; } inline static bool FullyOccupiesVoxel (BLOCKTYPE a_Type) { return Get(a_Type).m_FullyOccupiesVoxel; } inline static bool CanBeTerraformed (BLOCKTYPE a_Type) { return Get(a_Type).m_CanBeTerraformed; } + inline static float GetBlockHeight (BLOCKTYPE a_Type) { return Get(a_Type).m_BlockHeight; } inline static AString GetPlaceSound (BLOCKTYPE a_Type) { return Get(a_Type).m_PlaceSound; } // tolua_end @@ -101,6 +105,7 @@ protected: , m_IsSolid(true) , m_FullyOccupiesVoxel(false) , m_CanBeTerraformed(false) + , m_BlockHeight(1.0) , m_PlaceSound("") , m_Handler(nullptr) {} -- cgit v1.2.3