From d11e7e290daf69b4baa3e82ba4861a5ccedbf5d1 Mon Sep 17 00:00:00 2001 From: hgn Date: Wed, 4 Oct 2023 05:38:44 +0100 Subject: [PATCH] test walk comp 1 --- player_walk.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/player_walk.c b/player_walk.c index 0692bdc..ca264f3 100644 --- a/player_walk.c +++ b/player_walk.c @@ -964,6 +964,8 @@ static void player__walk_reset( ent_spawn *rp ){ static void player__walk_animator_exchange( bitpack_ctx *ctx, void *data ){ struct player_walk_animator *animator = data; - bitpack_bytes( ctx, sizeof(*animator), animator ); + //bitpack_bytes( ctx, sizeof(*animator), animator ); + bitpack_bytes( ctx, sizeof(animator->root_co), animator->root_co ); + bitpack_qquat( ctx, animator->root_q ); } #endif /* PLAYER_DEVICE_WALK_H */ -- 2.25.1