Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
slider_decibels.qh File Reference
#include "slider.qh"
Include dependency graph for slider_decibels.qh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  XonoticDecibelsSlider

Functions

entity makeXonoticDecibelsSlider (float, float, float, string)
entity makeXonoticDecibelsSlider_T (float, float, float, string, string)

Function Documentation

◆ makeXonoticDecibelsSlider()

entity makeXonoticDecibelsSlider ( float theValueMin,
float theValueMax,
float theValueStep,
string theCvar )

Definition at line 38 of file slider_decibels.qc.

39{
40 return makeXonoticDecibelsSlider_T(theValueMin, theValueMax, theValueStep, theCvar, string_null);
41}
string string_null
Definition nil.qh:9
entity makeXonoticDecibelsSlider_T(float theValueMin, float theValueMax, float theValueStep, string theCvar, string theTooltip)

References entity(), makeXonoticDecibelsSlider_T(), and string_null.

Referenced by XonoticDecibelsSlider::valueToText().

◆ makeXonoticDecibelsSlider_T()

entity makeXonoticDecibelsSlider_T ( float theValueMin,
float theValueMax,
float theValueStep,
string theCvar,
string theTooltip )

Definition at line 31 of file slider_decibels.qc.

32{
33 entity me;
35 me.configureXonoticSlider(me, theValueMin, theValueMax, theValueStep, theCvar, theTooltip);
36 return me;
37}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define NEW(cname,...)
Definition oo.qh:117

References entity(), and NEW.

Referenced by makeXonoticDecibelsSlider(), XonoticDecibelsSlider::valueToText(), and XonoticAudioSettingsTab_fill().