GetElementRotation
Jump to navigation
Jump to search
Retrieve the rotation of elements.
Syntax
float float float getElementRotation ( element theElement )
Required Arguments
- theElement: The element whose rotation will be retrieved
Returns
Returns three floats if element exists and is a valid element, false in if it's invalid.
Example
If a player points at a player element with a gun, its rotation will appear in the chat box.
Click to collapse [-]
Serverfunction onPlayerTargeted ( targetElem ) if ( isElement(targetElem) and getElementType(targetElem) == "player" ) then local x,y,z = getElementRotation ( targetElem ) outputChatBox ( "Target player rotation: " .. x .. " " .. y .. " " .. z, source ) end end addEventHandler ( "onPlayerTarget", getRootElement(), onPlayerTargeted )
Click to expand [+]
ClientSee Also
- attachElements
- createElement
- destroyElement
- detachElements
- getAttachedElements
- getElementAlpha
- getElementAttachedOffsets
- getElementAttachedTo
- getElementByIndex
- getElementByID
- getElementChild
- getElementChildren
- getElementChildrenCount
- getElementCollisionsEnabled
- getElementColShape
- getElementData
- getAllElementData
- hasElementData
- getElementDimension
- getElementHealth
- getElementID
- getElementInterior
- getElementMatrix
- getElementModel
- getElementParent
- getElementPosition
- getElementRotation
- getElementsByType
- getElementsWithinColShape
- getElementsWithinRange
- getElementType
- getElementVelocity
- getLowLODElement
- getRootElement
- isElement
- isElementAttached
- isElementCallPropagationEnabled
- isElementDoubleSided
- isElementFrozen
- isElementInWater
- isElementLowLOD
- isElementWithinColShape
- isElementWithinMarker
- setElementAlpha
- setElementAngularVelocity
- getElementAngularVelocity
- setElementAttachedOffsets
- setElementCallPropagationEnabled
- setElementCollisionsEnabled
- setElementData
- setElementDimension
- setElementDoubleSided
- setElementFrozen
- setElementHealth
- setElementID
- setElementInterior
- setElementModel
- setElementParent
- setElementPosition
- setElementRotation
- setElementVelocity
- setLowLODElement
- getPedContactElement
- getResourceDynamicElementRoot
- getResourceRootElement