]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mapobjects/trigger/viewloc.qh
Merge branch 'master' into terencehill/lms_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mapobjects / trigger / viewloc.qh
1 #pragma once
2
3
4 const int VIEWLOC_NOSIDESCROLL = BIT(0); // NOTE: currently unimplemented
5 const int VIEWLOC_FREEAIM = BIT(1);
6 const int VIEWLOC_FREEMOVE = BIT(2);
7 const int VIEWLOC_CAM_TRACK = BIT(3);
8 const int VIEWLOC_CAM_NOANGLE = BIT(4);
9 const int VIEWLOC_CAM_SNAP_HARD = BIT(5);
10 const int VIEWLOC_CAM_SNAP_UNLOCK = BIT(6);
11 const int VIEWLOC_CAM_SNAP_CLOSE = BIT(7);
12
13 .entity viewloc;
14
15 #ifdef CSQC
16 .entity goalentity;
17 .entity enemy;
18 .vector movedir;
19 #endif