mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Add option to disable backface culling for models
- Disabled by default (except players) - Fixes #2984
This commit is contained in:
parent
6907c3e40a
commit
50ba7e114d
5 changed files with 15 additions and 4 deletions
|
@ -42,7 +42,8 @@ ObjectProperties::ObjectProperties():
|
|||
automatic_rotate(0),
|
||||
stepheight(0),
|
||||
automatic_face_movement_dir(false),
|
||||
automatic_face_movement_dir_offset(0.0)
|
||||
automatic_face_movement_dir_offset(0.0),
|
||||
backface_culling(true)
|
||||
{
|
||||
textures.push_back("unknown_object.png");
|
||||
colors.push_back(video::SColor(255,255,255,255));
|
||||
|
@ -74,6 +75,7 @@ std::string ObjectProperties::dump()
|
|||
os<<", is_visible="<<is_visible;
|
||||
os<<", makes_footstep_sound="<<makes_footstep_sound;
|
||||
os<<", automatic_rotate="<<automatic_rotate;
|
||||
os<<", backface_culling="<<backface_culling;
|
||||
return os.str();
|
||||
}
|
||||
|
||||
|
@ -106,6 +108,7 @@ void ObjectProperties::serialize(std::ostream &os) const
|
|||
writeF1000(os,stepheight);
|
||||
writeU8(os, automatic_face_movement_dir);
|
||||
writeF1000(os, automatic_face_movement_dir_offset);
|
||||
writeU8(os, backface_culling);
|
||||
// Add stuff only at the bottom.
|
||||
// Never remove anything, because we don't want new versions of this
|
||||
}
|
||||
|
@ -142,6 +145,7 @@ void ObjectProperties::deSerialize(std::istream &is)
|
|||
stepheight = readF1000(is);
|
||||
automatic_face_movement_dir = readU8(is);
|
||||
automatic_face_movement_dir_offset = readF1000(is);
|
||||
backface_culling = readU8(is);
|
||||
}catch(SerializationError &e){}
|
||||
}
|
||||
else
|
||||
|
@ -149,4 +153,3 @@ void ObjectProperties::deSerialize(std::istream &is)
|
|||
throw SerializationError("unsupported ObjectProperties version");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue