DgsAttachToAutoDestroy: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (little correction)
 
(5 intermediate revisions by 2 users not shown)
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsAttachToAutoDestroy( element dgsElement )
bool dgsAttachToAutoDestroy( element sourceElement, element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = '''dgsRootInstance''':attachToAutoDestroy|
    Counterpart = dgsDetachFromAutoDestroy
}}


===Required Arguments===  
===Required Arguments===  
*'''element:''' An element that you want to attach.
*'''sourceElement:''' An element that you want to attach.
*'''dgsElement:''' the dgs element you want to attach to
*'''dgsElement:''' A dgs element you want to attach to


===Returns===
===Returns===
Line 27: Line 31:
end,2000,1)
end,2000,1)
</syntaxhighlight>
</syntaxhighlight>
=See Also=
==<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 21:37, 3 May 2021

This function allows you to make a specific element destroy with a dgs element.

Syntax

bool dgsAttachToAutoDestroy( element sourceElement, element dgsElement )

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

Method: dgsRootInstance:attachToAutoDestroy(...)
Counterpart: dgsDetachFromAutoDestroy

Required Arguments

  • sourceElement: An element that you want to attach.
  • dgsElement: A dgs element you want to attach to

Returns

Returns true if successful, false otherwise.

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)

See Also

General Functions

General Events