@citizenfx/client 2.0.6401-1 → 2.0.6404-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/natives_universal.d.ts +8 -1
- package/package.json +1 -1
package/natives_universal.d.ts
CHANGED
|
@@ -16226,11 +16226,18 @@ declare function GetTimecycleModifierVar(modifierName: string, varName: string):
|
|
|
16226
16226
|
|
|
16227
16227
|
/**
|
|
16228
16228
|
* GET_TIMECYCLE_MODIFIER_VAR_COUNT
|
|
16229
|
+
* @param modifierName The timecycle modifier name.
|
|
16230
|
+
* @return The amount of variables used on a specified timecycle modifier.
|
|
16231
|
+
*/
|
|
16232
|
+
declare function GetTimecycleModifierVarCount(modifierName: string): number;
|
|
16233
|
+
|
|
16234
|
+
/**
|
|
16235
|
+
* GET_TIMECYCLE_MODIFIER_VAR_NAME_BY_INDEX
|
|
16229
16236
|
* @param modifierName The name of timecycle modifier.
|
|
16230
16237
|
* @param modifierVarIndex The index of a variable on the specified timecycle modifier.
|
|
16231
16238
|
* @return The name of a variable by index.
|
|
16232
16239
|
*/
|
|
16233
|
-
declare function
|
|
16240
|
+
declare function GetTimecycleModifierVarNameByIndex(modifierName: string, modifierVarIndex: number): string;
|
|
16234
16241
|
|
|
16235
16242
|
/**
|
|
16236
16243
|
* GET_TIMECYCLE_TRANSITION_MODIFIER_INDEX
|