DgsSetElementKeeperEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} '''This function only works with dgsImportFunction and dgsImportOOPClass''' This function will enable/disable DGS element keeper. What...")
 
(DGS (OOP Syntax)/(Template Organization) Mission)
 
Line 13: Line 13:
bool dgsSetElementKeeperEnabled( bool state )  
bool dgsSetElementKeeperEnabled( bool state )  
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP|
    Method = '''dgsRootInstance''':setElementKeeperEnabled|
    Counterpart = dgsGetElementKeeperEnabled
}}


===Required Arguments===  
===Required Arguments===  
Line 30: Line 34:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
=See Also=
{{DGSFUNCTIONS}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Functions</span>==
{{DGS General Functions}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Events</span>==
{{DGS Events/General}}

Latest revision as of 23:21, 3 May 2021

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