X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Ftriggers%2Ftriggers.qh;h=474f797afea7ad67e1611b8c12644f836ab0af1d;hb=99c1b6ca80a69e112d410ee493d62f757b2c6df8;hp=9416f7a16fa93014370006119ea53cc8512ecb27;hpb=322daa75a43d539a5e334ef75496a7b3e52a6a5b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/triggers/triggers.qh b/qcsrc/common/triggers/triggers.qh index 9416f7a16..474f797af 100644 --- a/qcsrc/common/triggers/triggers.qh +++ b/qcsrc/common/triggers/triggers.qh @@ -10,21 +10,16 @@ const float SPAWNFLAG_NOTOUCH = 1; .void() trigger_touch; +.float antiwall_flag; // Variable to define what to do with func_clientwall +// 0 == do nothing, 1 == deactivate, 2 == activate + .float height; .float nottargeted; #define IFTARGETED if(!self.nottargeted && self.targetname != "") -.string bgmscript; -.float bgmscriptattack; -.float bgmscriptdecay; -.float bgmscriptsustain; -.float bgmscriptrelease; - .float lip; -void trigger_setnextthink(entity e, float dtime); - // used elsewhere (will fix) #ifdef SVQC void trigger_common_write(bool withtarget); @@ -43,9 +38,6 @@ void target_voicescript_clear(entity pl); void trigger_common_read(bool withtarget); void trigger_remove_generic(); -float WarpZoneLib_ExactTrigger_Touch(); -#define EXACTTRIGGER_TOUCH if(WarpZoneLib_ExactTrigger_Touch()) return - .float active; .string target; .string targetname;