]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/func/door.qh
Merge branch 'terencehill/menu_optimization' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / func / door.qh
1 #pragma once
2
3 // door constants
4 const int DOOR_START_OPEN = 1;
5 const int DOOR_DONT_LINK = 4;
6 const int DOOR_TOGGLE = 32;
7
8 const int DOOR_NOSPLASH = 256; // generic anti-splashdamage spawnflag
9
10 const int DOOR_NONSOLID = 1024;
11
12 const int SPAWNFLAGS_GOLD_KEY = 8;
13 const int SPAWNFLAGS_SILVER_KEY = 16;
14
15 #ifdef CSQC
16 // stuff for preload
17
18 .float door_finished;
19 #endif