DgsSetElementKeeperEnabled

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function only works with dgsImportFunction and dgsImportOOPClass

This function will enable/disable DGS element keeper.

What is DGS Element Keeper?

For example : Resource A enables DGS element keeper. When DGS stops, every DGS element will be kept but not rendered till the next time DGS starts, everything remains the same as before.

Syntax

bool dgsSetElementKeeperEnabled( bool state ) 

DGS OOP Syntax Help! I don't understand this!

Method: dgsRootInstance:setElementKeeperEnabled(...)
Counterpart: dgsGetElementKeeperEnabled

Required Arguments

  • state: A boolean of the state of DGS element keeper (DGS Element Keeper only works for those resources who enable DGS element keeper).

Returns

Returns true if successful, false otherwise

Example

loadstring(exports.dgs:dgsImportFunction())()
dgsSetElementKeeperEnabled(true) --Use this function before creating DGS elements

window = dgsCreateWindow(200,100,400,400,"DGS Window",false)	--Create a window

--Now try to restart DGS.

See Also

General Functions

General Events