ccvar

Usage:

Usage: game.cvar:{method}

This type represents the game's cvar system.

find๏ปฟ

Method

Get the game's cvar under this name.

Arguments

Name

Type

Description

name

string

Var name.

Returns

Type

Description

Convar object.

Example

local sv_quantize_movement_input = game.cvar:find('sv_quantize_movement_input')
if not sv_quantize_movement_input then
    error('sv_quantize_movement_input not found')
end

Last updated