]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/interpolate.qh
one step towards making the rifle the "standard sniper gun" instead of the Nex: on...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / interpolate.qh
1 .float iflags;
2 #define IFLAG_VELOCITY 1
3 #define IFLAG_ANGLES 2
4 #define IFLAG_AUTOANGLES 4
5 #define IFLAG_VALID 8
6 #define IFLAG_PREVALID 16
7 #define IFLAG_INTERNALMASK (IFLAG_VALID | IFLAG_PREVALID)
8
9 // call this BEFORE reading an entity update
10 void InterpolateOrigin_Undo();
11
12 // call this AFTER receiving an entity update
13 void InterpolateOrigin_Note();
14
15 // call this when the entity got teleported, before InterpolateOrigin_Note
16 void InterpolateOrigin_Reset();
17
18 // call this BEFORE drawing
19 void InterpolateOrigin_Do();