EngineStreamingRestoreMemorySize: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Remove obsolete Requirements section)
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
nil engineStreamingSetMemorySize()
nil engineStreamingRestoreMemorySize()
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[EngineStreaming]]:restoreMemorySize||}}
{{OOP||[[EngineStreaming]]:restoreMemorySize||}}
Line 14: Line 14:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addCommandHandler("rsms", function()
addCommandHandler("rsms", function()
     local prevMB = math.floor(engineGetStreamingMemorySize() / 1024 / 1024)
     local prevMB = math.floor(engineStreamingGetMemorySize() / 1024 / 1024)
     engineStreamingRestoreMemorySize()
     engineStreamingRestoreMemorySize()
     outputChatbox("The maximum streaming memory available has been restored to the original value of " .. math.floor(engineGetStreamingMemorySize() / 1024 / 1024) .. " MB [Was " .. prevMB .. " MB]")
     outputChatBox("The maximum streaming memory available has been restored to the original value of " .. math.floor(engineGetStreamingMemorySize() / 1024 / 1024) .. " MB [Was " .. prevMB .. " MB]")
end, false, false)
end, false, false)
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 21:58, 19 January 2026

Restores the maximum amount of RAM [in bytes] that can be used for streaming to the default value

[[{{{image}}}|link=|]] Tip: The function to manipulate the memory size is engineStreamingSetMemorySize

Syntax

nil engineStreamingRestoreMemorySize()

OOP Syntax Help! I don't understand this!

Method: EngineStreaming:restoreMemorySize(...)


Example

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

addCommandHandler("rsms", function()
    local prevMB = math.floor(engineStreamingGetMemorySize() / 1024 / 1024)
    engineStreamingRestoreMemorySize()
    outputChatBox("The maximum streaming memory available has been restored to the original value of " .. math.floor(engineGetStreamingMemorySize() / 1024 / 1024) .. " MB [Was " .. prevMB .. " MB]")
end, false, false)

See Also