diff options
Diffstat (limited to 'src/object_properties.h')
-rw-r--r-- | src/object_properties.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/object_properties.h b/src/object_properties.h index 4b7f9a5eb..082d9a529 100644 --- a/src/object_properties.h +++ b/src/object_properties.h @@ -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 - |