Boat

Constructors

Constructor

Description

Boat()

Members

Member

Description

avoidanceRadius

The radius of the vehicle’s specified avoidance size

canSeePlayer

Returns true if there is a line of sight between the vehicle’s lock on point and the player camera

driver

engine

floatAcceleration

floatDepth

floatingSamplers

gameObject

hasCountermeasures

hasDriver

health

inWater

isAirplane

Returns true if this vehicle is an Airplane.

isBeingLocked

True while one or more target tracking weapons are locking onto this vehicle

isBoat

Returns true if this vehicle is a Boat.

isBurning

isCar

Returns true if this vehicle is a Car.

isDead

isEmpty

isFull

isHelicopter

Returns true if this vehicle is a Helicopter.

isInWater

isTrackedByMissile

True while one or more missiles are tracking this vehicle

isTurret

Returns true if vehicle is marked as a Turret.

maxHealth

minimapBlip

name

playerDistance

playerIsInside

requireDeepWater

reverseMultiplier

rigidbody

seats

sinkingFloatAcceleration

sinkingMaxTorque

speed

spotChanceMultiplier

stability

team

transform

turnSpeed

Methods

Method

Description

Damage(source, amount)

GetEmptySeat(allowDriverSeat)

Get the first available empty seat in the vehicle.

GetTrackingMissiles()

Returns all missile projectiles that are currently tracking this vehicle.

Repair(amount)

Repairs the vehicle by the specified health amount.

ToString()

Details

class Boat
Boat Boat()
const float avoidanceRadius

The radius of the vehicle’s specified avoidance size

const bool canSeePlayer

Returns true if there is a line of sight between the vehicle’s lock on point and the player camera

const Actor driver
const Engine engine
float floatAcceleration
float floatDepth
array<Transform> floatingSamplers
const GameObject gameObject
const bool hasCountermeasures
const bool hasDriver
float health
bool inWater
const bool isAirplane

Returns true if this vehicle is an Airplane. If true, you can safely access fields via the Airplane class API.

const bool isBeingLocked

True while one or more target tracking weapons are locking onto this vehicle

const bool isBoat

Returns true if this vehicle is a Boat. If true, you can safely access fields via the Boat class API.

const bool isBurning
const bool isCar

Returns true if this vehicle is a Car. If true, you can safely access fields via the Car class API.

const bool isDead
const bool isEmpty
const bool isFull
const bool isHelicopter

Returns true if this vehicle is a Helicopter. If true, you can safely access fields via the Helicopter class API.

const bool isInWater
const bool isTrackedByMissile

True while one or more missiles are tracking this vehicle

const bool isTurret

Returns true if vehicle is marked as a Turret.

float maxHealth
const Texture minimapBlip
const string name
const float playerDistance
const bool playerIsInside
bool requireDeepWater
float reverseMultiplier
const Rigidbody rigidbody
const array<Seat> seats
float sinkingFloatAcceleration
float sinkingMaxTorque
float speed
float spotChanceMultiplier
float stability
const int team
const Transform transform
float turnSpeed
void Damage(Actor source, float amount)
Seat GetEmptySeat(bool allowDriverSeat)

Get the first available empty seat in the vehicle.

array<TargetSeekingMissileProjectile> GetTrackingMissiles()

Returns all missile projectiles that are currently tracking this vehicle.

bool Repair(float amount)

Repairs the vehicle by the specified health amount. Returns true if the vehicle was healed (that is, if it was not already at max health.)

string ToString()