Vehicle.Angle
From Liberty Unleashed Wiki
This Vehicle class member returns or sets the rotation of the vehicle.
Syntax
You can either return or set a new value using this member:
float Vehicle.Angle
Vehicle.Angle = float fAngle
Arguments
- vPos - This is the new rotation of the vehicle in degrees
Example 1. Returning
This command will show the player the angle of the vehicle that they are currently in.
function onPlayerCommand( player, cmd, text ) { if ( cmd == "vehangle" ) { local veh = player.Vehicle; if ( veh ) MessagePlayer( "Vehicle angle: " + veh.Angle, player ); } return 1; }
Notes
The functions Player.Vehicle, MessagePlayer and event onPlayerCommand were used in this example. More info about them in the corresponding pages.
Example 2. Setting
This command will set the players vehicle angle to the angle specified in the text.
function onPlayerCommand( player, cmd, text ) { if ( cmd == "vehangle" ) { local veh = player.Vehicle; if ( ( veh ) && ( text ) ) veh.Angle = text.tofloat(); } return 1; }
Notes
The function Player.Vehicle and event onPlayerCommand were used in this example. More info about them in the corresponding pages.
Related Functions
- CreateVehicle
- FindVehicle
- GetClosestVehicle
- GetVehicleCount
- GetVehicleHandlingData
- GetVehicleIDFromName
- GetVehicleName
- SetVehicleHandlingData
- Vehicle.Alpha
- Vehicle.Angle
- Vehicle.Colour1
- Vehicle.Colour2
- Vehicle.Driver
- Vehicle.EngineDamage
- Vehicle.Explode
- Vehicle.Fix
- Vehicle.GetAddon
- Vehicle.GetPassenger
- Vehicle.GetHandlingData
- Vehicle.GetWheelStatus
- Vehicle.Health
- Vehicle.ID
- Vehicle.IdleRespawnTime
- Vehicle.IdleTime
- Vehicle.LightState
- Vehicle.Locked
- Vehicle.Model
- Vehicle.Marker
- Vehicle.OneTime
- Vehicle.PassengerCount
- Vehicle.Pos
- Vehicle.Remove
- Vehicle.Respawn
- Vehicle.RespawnTime
- Vehicle.RGBColour1
- Vehicle.RGBColour2
- Vehicle.SetHandlingData
- Vehicle.SetWheelStatus
- Vehicle.SpawnAngle
- Vehicle.SpawnPos
- Vehicle.SetAddon
- Vehicle.SetEngineState
- Vehicle.SetRadio
- Vehicle.Siren
- Vehicle.SirenLight
- Vehicle.TaxiLight
- Vehicle.Velocity
- Vehicle.VirtualWorld
- Vehicle.Wrecked