Ana içeriğe geç

SetPlayerCameraLookAt

Description

Set the direction a player's camera looks at. Generally meant to be used in combination with SetPlayerCameraPos.

NameDescription
playeridThe ID of the player whose camera to set.
Float:xThe X coordinate for the player's camera to look at.
Float:yThe Y coordinate for the player's camera to look at.
Float:zThe Z coordinate for the player's camera to look at.
CAM_MOVE:cutThe style of the change. Can be used to interpolate (change slowly) from old pos to new pos using CAMERA_MOVE.

Returns

true - The function was executed successfully.

false - The function failed to execute. The player specified does not exist.

Examples

SetPlayerCameraPos(playerid, 320.0, 50.0, 170.0);
SetPlayerCameraLookAt(playerid, 324.34, 54.122, 173.35);

Notes

warning

Using the camera functions directly after enabling spectator mode doesn't work.