]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/object_properties.h
Document zoom_fov in settingtypes.txt and minetest.conf.example
[dragonfireclient.git] / src / object_properties.h
index 4b7f9a5eb4f5c8501bf1d31f497dd73d08e8b24e..082d9a5290ea945e0f7cb6b418acbd9a369fe4b5 100644 (file)
@@ -33,7 +33,7 @@ struct ObjectProperties
        bool physical;
        bool collideWithObjects;
        float weight;
-       core::aabbox3d<f32> collisionbox;
+       aabb3f collisionbox;
        std::string visual;
        std::string mesh;
        v2f visual_size;
@@ -47,7 +47,11 @@ struct ObjectProperties
        f32 stepheight;
        bool automatic_face_movement_dir;
        f32 automatic_face_movement_dir_offset;
-
+       bool backface_culling;
+       std::string nametag;
+       video::SColor nametag_color;
+       f32 automatic_face_movement_max_rotation_per_sec;
+       std::string infotext;
 
        ObjectProperties();
        std::string dump();
@@ -56,4 +60,3 @@ struct ObjectProperties
 };
 
 #endif
-