X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_model.h;h=e7114cf6e71ab912746033919939ab9726f85425;hb=47a76e9a5151ef020e8554d805e313650718981f;hp=6c46f08e4c18601048272135d1740f3f4cca3885;hpb=f437be6ed58378d598d2408c12cc52fee3375a2b;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_model.h b/player_model.h index 6c46f08..e7114cf 100644 --- a/player_model.h +++ b/player_model.h @@ -28,6 +28,8 @@ struct player_avatar id_head, id_ik_foot_l, id_ik_foot_r, + id_wheel_l, + id_wheel_r, id_board; }; @@ -56,6 +58,8 @@ VG_STATIC void player_avatar_load( struct player_avatar *av, const char *path ) av->id_ik_foot_l = skeleton_bone_id( sk, "foot.IK.L" ); av->id_ik_foot_r = skeleton_bone_id( sk, "foot.IK.R" ); av->id_board = skeleton_bone_id( sk, "board" ); + av->id_wheel_l = skeleton_bone_id( sk, "wheel.L" ); + av->id_wheel_r = skeleton_bone_id( sk, "wheel.R" ); } #if 0