add BlockMaterial.hitSound
This commit is contained in:
@@ -13,7 +13,8 @@ dv::value BlockMaterial::serialize() const {
|
||||
{"name", name},
|
||||
{"stepsSound", stepsSound},
|
||||
{"placeSound", placeSound},
|
||||
{"breakSound", breakSound}
|
||||
{"breakSound", breakSound},
|
||||
{"hitSound", hitSound}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -109,9 +109,10 @@ using BoxModel = AABB;
|
||||
/// @brief Common kit of block properties applied to groups of blocks
|
||||
struct BlockMaterial {
|
||||
std::string name;
|
||||
std::string stepsSound {""};
|
||||
std::string placeSound {""};
|
||||
std::string breakSound {""};
|
||||
std::string stepsSound;
|
||||
std::string placeSound;
|
||||
std::string breakSound;
|
||||
std::string hitSound;
|
||||
|
||||
dv::value serialize() const;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user