GetVehicleTurretPosition: Difference between revisions
Jump to navigation
Jump to search
(→Syntax) |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
This function returns two floats containing the rotational position of the vehicle's turret along the horizontal and vertical axes (X and Y) respectively. This function can fail if the player is not in a vehicle, or if the vehicle does not have a turret. Vehicles with turrets include tanks and fire trucks. If this function does fail, the first argument will be set to 'false'. | This function returns two floats containing the rotational position of the vehicle's turret along the horizontal and vertical axes (X and Y) respectively. This function can fail if the player is not in a vehicle, or if the vehicle does not have a turret. Vehicles with turrets include tanks and fire trucks. If this function does fail, the first argument will be set to 'false'. | ||
Revision as of 22:56, 18 May 2006
This function returns two floats containing the rotational position of the vehicle's turret along the horizontal and vertical axes (X and Y) respectively. This function can fail if the player is not in a vehicle, or if the vehicle does not have a turret. Vehicles with turrets include tanks and fire trucks. If this function does fail, the first argument will be set to 'false'.
Syntax
float float getVehicleTurretPosition ( vehicle )
This function also has two variants that allow you to retrieve data from just one of the two axes.
Required Arguments
- vehicle: The vehicle whose rotation you want to retrieve.
Returns
Returns two floats for the X and Y axis rotation respectively.
Example
newcar = createVehicle ( 520, 1024, 1024, 1024 ) x, y = GetVehicleTurretPosition ( newcar ) if (x) serverChat ( "Turret position: ",x,",",y,"." ) end