onClientRestore | Multi Theft Auto: Wiki Skip to content

onClientRestore

Client-side
Server-side
Shared

This event is triggered when the local player restores the game screen from a previously minimized state.

Parameters

bool didClearRenderTargets
  • didClearRenderTargets: A bool specifying whether all render targets have been cleared as part of the restore process. Generally, restoring in full screen mode will clear render targets.

Source

element: The source of this event is root element.

Code Examples

client

This example shows how to cope with life's little upsets

function handleRestore( didClearRenderTargets )
if didClearRenderTargets then
-- Do any work here to restore render target contents as required
end
end
addEventHandler("onClientRestore",root,handleRestore)