setVehicleTIPars: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Text replacement - "(\|[pr][0-9]+ *= *[^-\r\n]+) *- *V([a-z])" to "$1 - v$2")
 
Line 22: Line 22:
|s1= vehicle [[setVehicleTIPars]] [engine, wheels, weapon]
|s1= vehicle [[setVehicleTIPars]] [engine, wheels, weapon]


|p1= vehicle: [[Object]] - Vehicle whose components are manipulated
|p1= vehicle: [[Object]] - vehicle whose components are manipulated


|p2= engine: [[Number]] - engine and body's heat
|p2= engine: [[Number]] - engine and body's heat

Latest revision as of 15:46, 8 November 2023

Hover & click on the images for description

Description

Description:
Sets the "heat" state of different vehicle parts for Thermal Imaging detection. This allows simulation of heated up parts of a vehicle without it actually having to utilize them - on a 0..1 range - 0 being cold, 1 being hot.
This command does not work on infantry weapons.
Groups:
Object Manipulation

Syntax

Syntax:
vehicle setVehicleTIPars [engine, wheels, weapon]
Parameters:
vehicle: Object - vehicle whose components are manipulated
engine: Number - engine and body's heat
wheels: Number - tracks/wheels' heat
weapon: Number - main weapon's heat
Return Value:
Nothing

Examples

Example 1:
vehicle player setVehicleTIPars [1, 1, 1]; // set all parts hot vehicle player setVehicleTIPars [0, 0, 0]; // set all parts cold vehicle player setVehicleTIPars [0.5, 0.5, 0.5]; // set all parts warm
Example 2:
vehicle player setVehicleTIPars [1, 0, 0]; // set the engine warm, perfect for winter

Additional Information

See also:
disableTIEquipment setCamUseTI

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note