]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/object_properties.cpp
Mgfractal: Move julia set selection into formula parameter
[dragonfireclient.git] / src / object_properties.cpp
index f560f59343a6d6507e6993d8b2aaacb43c84b2af..dc1eddf4eeae2c296a82aa4eb76b2d7c891f2302 100644 (file)
@@ -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");
        }
 }
-