Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
teleport.qh
Go to the documentation of this file.
1#pragma once
2
3
4// q3df compat spawnflags, they may also be useful in xonotic
5
6// trigger_teleport
7#define TELEPORT_OBSERVERS_ONLY BIT(0) // named SPECTATOR in q3df, exists in q3 but is only documented in q3df
8#define TELEPORT_KEEP_SPEED BIT(1)
9
10// target_teleporter
11#define TARGET_TELEPORTER_KEEP_SPEED BIT(0)