GetTimecycleVarCount
Docslocal retval = GetTimecycleVarCount()Description
Returns the amount of variables available to be applied on timecycle modifiers.
Returns
intReturns an integer value.
Examples
Official
local varCount = GetTimecycleVarCount()
if varCount ~= 0 then
for index = 0, varCount - 1 do
local varName = GetTimecycleVarNameByIndex(index)
local varDefault = GetTimecycleVarDefaultValueByIndex(index)
print(string.format("[%d] %s (%f)", index, varName, varDefault))
end
end