diff options
author | MirceaKitsune <sonichedgehog_hyperblast00@yahoo.com> | 2012-10-26 11:46:46 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-11-25 18:14:15 +0200 |
commit | ba4d93027f7b1590f303eff2138cae413faf5c34 (patch) | |
tree | 131a875a718d15c50d5d052540f7c433bd2bdb1f /src/genericobject.h | |
parent | fb0c43186422ad985e70f73bc70eeb07cc194909 (diff) | |
download | minetest-ba4d93027f7b1590f303eff2138cae413faf5c34.tar.gz minetest-ba4d93027f7b1590f303eff2138cae413faf5c34.tar.bz2 minetest-ba4d93027f7b1590f303eff2138cae413faf5c34.zip |
Joint positioning and rotation code, and fix a problem related to their lua API
Attempt to move the animation system to a more correct implementation, rather than using object properties. Incomplete and breaks functionality
Diffstat (limited to 'src/genericobject.h')
-rw-r--r-- | src/genericobject.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/genericobject.h b/src/genericobject.h index 81563c19b..c57cce8ba 100644 --- a/src/genericobject.h +++ b/src/genericobject.h @@ -28,8 +28,9 @@ with this program; if not, write to the Free Software Foundation, Inc., #define GENERIC_CMD_UPDATE_POSITION 1 #define GENERIC_CMD_SET_TEXTURE_MOD 2 #define GENERIC_CMD_SET_SPRITE 3 -#define GENERIC_CMD_PUNCHED 4 -#define GENERIC_CMD_UPDATE_ARMOR_GROUPS 5 +#define GENERIC_CMD_SET_ANIMATIONS 4 +#define GENERIC_CMD_PUNCHED 5 +#define GENERIC_CMD_UPDATE_ARMOR_GROUPS 6 #include "object_properties.h" std::string gob_cmd_set_properties(const ObjectProperties &prop); @@ -54,6 +55,8 @@ std::string gob_cmd_set_sprite( bool select_horiz_by_yawpitch ); +std::string gob_cmd_set_animations(int frame_start, int frame_end, float frame_speed, float frame_blend); + std::string gob_cmd_punched(s16 damage, s16 result_hp); #include "itemgroup.h" |