GetPlayerCameraAspectRatio

From SA-MP Wiki

Jump to: navigation, search


GetPlayerCameraAspectRatio was added in SA-MP 0.3z This function was added in SA-MP 0.3z and will not work in earlier versions!


Description:

Retrieves the aspect ratio of a player's camera.


Image:32px-Ambox_warning_orange.png

Note

The return value of this function represents the value of the "widescreen" option in the game's display settings, not the actual aspect ratio of the player's display.


Parameters:
(playerid)
playeridThe ID of the player to get the camera aspect ratio of.


Return Values:

The aspect ratio of the player's camera, as a float. The aspect ratio can be one of three values: 4:3 (1.3333334, Float:0x3FAAAAAB) when widescreen is turned off, 5:4 (1.2470589, Float:0x3F9F9FA0) when letterbox mode is turned on, and 16:9 (1.7764707, Float:0x3FE36364) when widescreen is turned on regardless of the letterbox mode.


new szString[144];
format(szString, sizeof(szString), "Your aspect ratio: %f", GetPlayerCameraAspectRatio(playerid));
SendClientMessage(playerid, -1, szString);

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

In other languages