mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-08 07:52:50 +00:00
Voice Chat menu for normies
Changed a bit of wording around to stop in-dev confusion, closer to Discord for player facing variables. Didn't change any of the actual true variable names at all.
This commit is contained in:
parent
797a776ca4
commit
079d00ab15
1 changed files with 6 additions and 6 deletions
|
|
@ -16,22 +16,22 @@
|
|||
|
||||
menuitem_t OPTIONS_Voice[] =
|
||||
{
|
||||
{IT_STRING | IT_CVAR, "Voice Chat", "Turn on or off all voice chat for yourself.",
|
||||
{IT_STRING | IT_CVAR, "All Voice Chat", "Choose to opt-in to voice chat at all, for yourself.",
|
||||
NULL, {.cvar = &cv_voice_chat}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Voice Mode", "When to transmit your own voice.",
|
||||
{IT_STRING | IT_CVAR, "Input Mode", "When to transmit your own voice.",
|
||||
NULL, {.cvar = &cv_voice_mode}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Input Amplifier", "Amplify your voice, in decibels. Negative values are quieter.",
|
||||
NULL, {.cvar = &cv_voice_inputamp}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Activation Threshold", "Voice higher than this threshold will transmit, in decibels.",
|
||||
{IT_STRING | IT_CVAR, "Input Sensitivity", "Voice higher than this threshold will transmit, in decibels.",
|
||||
NULL, {.cvar = &cv_voice_activationthreshold}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Self Voice Mute", "Whether your voice is transmitted or not.",
|
||||
{IT_STRING | IT_CVAR, "Mute Self", "Whether your voice is transmitted or not.",
|
||||
NULL, {.cvar = &cv_voice_selfmute}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Voice Loopback", "Play your own recording voice back.",
|
||||
{IT_STRING | IT_CVAR, "Voice Loopback", "Play your own voice back simultaneously.",
|
||||
NULL, {.cvar = &cv_voice_loopback}, 0, 0},
|
||||
|
||||
{IT_SPACE | IT_NOTHING, NULL, NULL,
|
||||
|
|
@ -40,7 +40,7 @@ menuitem_t OPTIONS_Voice[] =
|
|||
{IT_HEADER, "Server Voice Options...", NULL,
|
||||
NULL, {NULL}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Server Voice Mute", "All voice chat will be disabled on your server.",
|
||||
{IT_STRING | IT_CVAR, "No Server Voice Chat", "All voice chat will be disabled on your server.",
|
||||
NULL, {.cvar = &cv_voice_servermute}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Proximity Effects", "Player voices will be adjusted relative to you.",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue