engineStreamingGetBufferSize | Multi Theft Auto: Wiki Skip to content

engineStreamingGetBufferSize

Client-side
Server-side
Shared

Pair: engineStreamingSetBufferSize

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


Get the streaming buffer size [not maximum memory size]

Syntax

engineStreamingGetBufferSize ( )

Code Examples

client

This example adds a command that can be used to change the streaming buffer size, and display the previous value.

addCommandHandler("sbs", function(_, sizeMB)
if tonumber(sizeMB) then
if engineStreamingSetBufferSize(tonumber(sizeMB) * 1024 * 1024) then -- Convert MB to Bytes
outputChatbox("The streaming buffer size has been changed from " .. math.floor(engineStreamingGetBufferSize() / 1024 / 1024) .. " MB to " .. sizeMB .. " MB")
else
outputChatbox("Not enough memory!")
end
else
outputChatbox("Please enter a numeric value!")
end
end, false, false)

See Also

Engine Functions
Engine Elements