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

Damage texture modifier (#9833)

Adds a new object property "damage_texture_modifier"
This commit is contained in:
Lars Müller 2020-05-11 21:41:36 +02:00 committed by GitHub
parent 6e1372bd89
commit 9ba24f89f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 9 deletions

View file

@ -68,6 +68,7 @@ std::string ObjectProperties::dump()
os << ", eye_height=" << eye_height;
os << ", zoom_fov=" << zoom_fov;
os << ", use_texture_alpha=" << use_texture_alpha;
os << ", damage_texture_modifier=" << damage_texture_modifier;
return os.str();
}
@ -114,6 +115,7 @@ void ObjectProperties::serialize(std::ostream &os) const
writeF32(os, eye_height);
writeF32(os, zoom_fov);
writeU8(os, use_texture_alpha);
os << serializeString(damage_texture_modifier);
// Add stuff only at the bottom.
// Never remove anything, because we don't want new versions of this
@ -166,4 +168,7 @@ void ObjectProperties::deSerialize(std::istream &is)
eye_height = readF32(is);
zoom_fov = readF32(is);
use_texture_alpha = readU8(is);
try {
damage_texture_modifier = deSerializeString(is);
} catch (SerializationError &e) {}
}