GetCameraRotation: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:


<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local CAM = getCamera()--The camera is always the same element, so use this local variable to save cpu power.
function getCameraRotation ()
function getCameraRotation ()
     return getElementRotation(getCamera()) --rx, ry, rz
     return getElementRotation(CAM) --rx, ry, rz
end
end
</syntaxhighlight>  
</syntaxhighlight>  

Latest revision as of 21:05, 27 June 2018

Dialog-warning.png Warning: This function no longer exists. However, below is a function that achieves a similar result.
local CAM = getCamera()--The camera is always the same element, so use this local variable to save cpu power.
function getCameraRotation ()
    return getElementRotation(CAM) --rx, ry, rz
end

See Also