From: terencehill Date: Tue, 8 Nov 2022 14:09:24 +0000 (+0100) Subject: Team radar: make teammate arrow icon rotation smoother X-Git-Tag: xonotic-v0.8.6~300 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0ca59cc640878efece3c0d5c80436643a32e72a0;p=xonotic%2Fxonotic-data.pk3dir.git Team radar: make teammate arrow icon rotation smoother --- diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index 536637145..f8e1941f5 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -115,7 +115,7 @@ ENTCS_PROP(ORIGIN, false, origin, origin, ENTCS_SET_NORMAL, { WriteVector(chan, ent.origin); }, { ent.has_sv_origin = true; vector v = ReadVector(); setorigin(ent, v); }) -#define DEC_FACTOR (360 / 32) +#define DEC_FACTOR (360 / 64) ENTCS_PROP_CODED(ANGLES, false, angles_y, 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; })