GetLowLODElement: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
Line 21: Line 20:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local obj = createObject(1488,0,0,3,0,0,90) -- Create object
local obj = createObject(1488,0,0,3,0,0,90) -- Create object
local lod_obj = createObject(1337,0,0,3,0,0,90,true) -- Create OD object
local lod_obj = createObject(1337,0,0,3,0,0,90,true) -- Create LOD object


setLowLODElement(obj,lod_obj) -- Setting LOD, 'attach' to obj
setLowLODElement(obj,lod_obj) -- Setting LOD, 'attach' to obj
Line 32: Line 31:
</section>
</section>


==Requirements==
{{Requirements|1.2|1.2}}
==See Also==
==See Also==
{{Element_functions}}
{{Element_functions}}

Latest revision as of 15:36, 7 November 2024

This function return the low LOD element that an element is associated with.

Syntax

element getLowLODElement ( element theElement )

OOP Syntax Help! I don't understand this!

Method: element:getLowLOD(...)
Variable: .lowLOD
Counterpart: setLowLODElement


Required Arguments

  • theElement: The element whose low LOD version we want to get.

Returns

Returns a low LOD element if successful, false otherwise.

Example

Click to collapse [-]
Clientside example

This example is not done yet:

local obj = createObject(1488,0,0,3,0,0,90) -- Create object
local lod_obj = createObject(1337,0,0,3,0,0,90,true) -- Create LOD object

setLowLODElement(obj,lod_obj) -- Setting LOD, 'attach' to obj

local lod_get = getLowLODElement(obj) -- Get LOD from obj

--lod_get = lod_obj 

See Also