Difference between revisions of "Joint:setUserData"

m (mixed → any)
m (Arguments: Fix reference to the variant type)
 
Line 11: Line 11:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|any|value|The Lua value to associate with the Joint.}}
+
{{param|Variant|value|The Lua value to associate with the Joint.}}
 +
 
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Latest revision as of 08:53, 12 May 2020

Available since LÖVE 0.9.2
This method is not supported in earlier versions.

Associates a Lua value with the Joint.

To delete the reference, explicitly pass nil.

O.png Use this function in one thread and one thread only. Using it in more threads will make Lua cry and most likely crash.  


Function

Synopsis

Joint:setUserData( value )

Arguments

Variant value
The Lua value to associate with the Joint.

Returns

Nothing.

See Also

Other Languages