10 lines
458 B
Lua
10 lines
458 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@param width number
|
|
---@param framerate number
|
|
---@param sound number
|
|
---@return string time
|
|
---Returns the maximum length of recorded video for a given set of video recording parameters. The value returned reflects both the data rate associated with the given parameters and the amount of space remaining on the hard drive.
|
|
function MovieRecording_MaxLength(width, framerate, sound) end
|