GetElementAngularVelocity

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

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

Syntax

float, float, float getElementAngularVelocity ( element theElement )           

OOP Syntax Help! I don't understand this!

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


Required Arguments

Returns

Returns three floats describing the x, y and z rotation

Example

addCommandHandler("getangularvelocity", 
	function(sourcePlayer, commandName)
		local aX, aY, aZ = getElementAngularVelocity(sourcePlayer)

		outputChatBox("Your current angular velocity is: X: " .. aX .." Y: " .. aY .." Z: " .. aZz, sourcePlayer)
	end
)

Requirements

Minimum server version 1.5.5-9.14060
Minimum client version 1.5.5-9.14060

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.5.5-9.14060" client="1.5.5-9.14060" />

See Also