HU/getCamera: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 28: Line 28:


[[hu:getCamera]]
[[hu:getCamera]]
[[ar:getCamera]]
[[en:getCamera]]


==Fordította==
==Fordította==
* '''''Surge'''''
* '''''Surge'''''

Revision as of 13:41, 13 August 2018

This function returns an element that corresponds to the game camera

[[{{{image}}}|link=|]] Note: Using attachElements with the camera and the main player can interfere with movement
[[{{{image}}}|link=|]] Note: Using setElementPosition/Rotation/Matrix on the camera element will automatically clear any target set with setCameraTarget

Syntax

element getCamera ()

Visszatérési érték

Returns an element that corresponds to the game camera

Példa

This example attaches (fixes) the camera to a vehicle.

local cam = getCamera()
setElementPosition( cam, 0,0,0 )  -- Clear camera target
local myVehicle = getPedOccupiedVehicle(localPlayer)
attachElements( cam, myVehicle, 0,-4,2, -20,0,0 )


Lásd még

Shared

Fordította

  • Surge