DgsAttachToAutoDestroy: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
This function allows you to attach element to dgsElement | |||
==Syntax== | ==Syntax== |
Revision as of 08:22, 26 April 2020
This function allows you to attach element to dgsElement
Syntax
bool dgsAttachToAutoDestroy(element, dgsElement)
Required Arguments
- element: Element you want to attach dgsElement
- dgsElement: dgsElement you want to attach element
Returns
Returns element attached to dgsElement
Example
This example create a vehicle attached to window, which will be destroyed after 2 seconds with window
DGS = exports.dgs local window = dgsCreateWindow(200,200,200,200,"test",false) local vehicle = createVehicle(411,0,0,3) dgsAttachToAutoDestroy(vehicle,window) setTimer(function() destroyElement(window) end,2000,1)