From: terencehill Date: Wed, 30 Jan 2019 17:32:21 +0000 (+0100) Subject: entcs: save some bandwidth by scaling angles.y even more X-Git-Tag: xonotic-v0.8.5~1627 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=188fb0a8c28610327c5abda203eeb0f7b2ffec93;p=xonotic%2Fxonotic-data.pk3dir.git entcs: save some bandwidth by scaling angles.y even more --- diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index ef028c9a2..e0d983b96 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -88,7 +88,7 @@ ENTCS_PROP(ORIGIN, false, origin, ENTCS_SET_NORMAL, { WriteVector(chan, ent.origin); }, { ent.has_sv_origin = true; vector v = ReadVector(); setorigin(ent, v); }) -#define DEC_FACTOR (360 / 256) +#define DEC_FACTOR (360 / 32) ENTCS_PROP_CODED(ANGLES, false, angles_y, ENTCS_SET_NORMAL, DEC_FACTOR, { WriteByte(chan, ent.angles.y / DEC_FACTOR); }, { vector v = '0 0 0'; v.y = ReadByte() * DEC_FACTOR; ent.angles = v; })