Nuclide
Software Development Kit for id Tech
xr.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016-2022 Vera Visions LLC.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15*/
16
18void XR_Init(entity);
25
26#ifdef CLIENT
29#endif
30
31var float autocvar_xr_roomScale = 1.0f;
32var float autocvar_xr_viewHeight = -48.0f;
33var bool autocvar_xr_testInputs = false;
entity() spawn
var float autocvar_xr_viewHeight
Definition: xr.h:32
void XR_UpdateView(entity)
Sets up view properties from a client entity before a rendering call.
Definition: xr.qc:61
bool XR_Available(entity)
Returns if XR features are available on the entity.
Definition: xr.qc:119
void XR_InputFrame(entity)
Called on client/server modules after an input packet has been dispatched.
Definition: xr.qc:90
var float autocvar_xr_roomScale
Definition: xr.h:31
var bool autocvar_xr_testInputs
Definition: xr.h:33
void XR_Init(entity)
Called internally by client/server modules for when a player joins.
Definition: xr.qc:31
void XR_Shutdown(entity)
Called internally by client/server modules for when a player leaves.
Definition: xr.qc:50