]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mapobjects/func/door.qh
Merge branch 'master' into terencehill/translated_keys
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mapobjects / func / door.qh
1 #pragma once
2
3
4 const int DOOR_START_OPEN = BIT(0);
5 const int DOOR_DONT_LINK = BIT(2);
6 const int SPAWNFLAGS_GOLD_KEY = BIT(3); // Quake 1 compat, can only be used with func_door!
7 const int SPAWNFLAGS_SILVER_KEY = BIT(4); // Quake 1 compat, can only be used with func_door!
8 const int DOOR_TOGGLE = BIT(5);
9
10 const int DOOR_NONSOLID = BIT(10);
11 const int DOOR_CRUSH = BIT(11); // can't use CRUSH cause that is the same as DOOR_DONT_LINK
12
13
14 #ifdef CSQC
15 // stuff for preload
16
17 .float door_finished;
18 #endif