X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fobject_properties.h;h=4b7f9a5eb4f5c8501bf1d31f497dd73d08e8b24e;hb=00fc0babe0c6c5464fa9ffbc5a257b1e2aa93111;hp=3ab488f92bade29b843425926888dcd5bc225753;hpb=fb0c43186422ad985e70f73bc70eeb07cc194909;p=oweals%2Fminetest.git diff --git a/src/object_properties.h b/src/object_properties.h index 3ab488f92..4b7f9a5eb 100644 --- a/src/object_properties.h +++ b/src/object_properties.h @@ -1,6 +1,6 @@ /* -Minetest-c55 -Copyright (C) 2012 celeron55, Perttu Ahola +Minetest +Copyright (C) 2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -24,28 +24,29 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "irrlichttypes_bloated.h" #include #include +#include struct ObjectProperties { // Values are BS=1 s16 hp_max; bool physical; + bool collideWithObjects; float weight; core::aabbox3d collisionbox; std::string visual; std::string mesh; - core::vector2d animation_frames; - float animation_speed; - float animation_blend; - std::map animation_bone_position; - std::map animation_bone_rotation; v2f visual_size; - core::array textures; + std::vector textures; + std::vector colors; v2s16 spritediv; v2s16 initial_sprite_basepos; bool is_visible; bool makes_footstep_sound; float automatic_rotate; + f32 stepheight; + bool automatic_face_movement_dir; + f32 automatic_face_movement_dir_offset; ObjectProperties();