GetElementAngularVelocity: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(First creation (please check if that info is correct, i am no c++ expert))
 
m (fix revision 14165)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
{{New feature/item|3.0156|1.5.5|14060|Gets the current angular velocity of a specified, supported element.}}
{{New feature/item|3.0156|1.5.5|14165|Gets the current angular velocity of a specified, supported element.}}


==Syntax==  
==Syntax==  

Revision as of 14:15, 28 August 2018

Gets the current angular velocity of a specified, supported element.

Syntax

bool getElementAngularVelocity ( element theElement )           

OOP Syntax Help! I don't understand this!

Method: element:getAngularVelocity(...)
Variable: .angularVelocity
Counterpart: setElementAngularVelocity


Required Arguments

Returns

Returns true if it was succesful, false otherwise.

Example

addCommandHandler("getangularvelocity", function(player)
    --retrieve angular velocity of the player
    local avx, avy, avz = getElementAngularVelocity(player)
    outputChatBox("Your current angular velocity is: X: "..avx.." Y: "..avy.." Z: "..avz, player, 0, 255, 0, false)
end)

See Also