DgsAttachToAutoDestroy

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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