hook_cvar_change
- Синтаксис
-
native cvarhook:hook_cvar_change(pcvar, const callback[]);
Переменная | Описание |
---|---|
pcvar |
Pointer to cvar |
callback |
Name of callback function |
- Описание
- Creates a hook for when a cvar's value is changed.
- Пометка
-
Changing the cvar value from within this forward can lead to infinite recursion and should be avoided.
- Пометка
-
The callback will be called in the following manner: public cvar_change_callback(pcvar, const old_value[], const new_value[]) pcvar - Pointer to cvar that was changed old_value - Buffer containing the previous value of the cvar new_value - Buffer containing the new value of the cvar The return value is ignored
- Возвращает
- Callback handle that can be used with [disable|enable]_cvar_hook