setVehicleTIPars: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "_{10,} " to "")
m (Some wiki formatting)
(33 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command


| arma2oa |Game name=
|game1= arma2oa
|version1= 1.50


|1.51|Game version=
|game2= tkoh
|version2= 1.00


|arg= global |Multiplayer Arguments=
|game3= arma3
|version3= 0.50


|eff= local |Multiplayer Effects=
|arg= global


|gr1= Object Manipulation |GROUP1=
|eff= local


| 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 range from 0 to 1, 0 being cold, 1 being hot.
|gr1= Object Manipulation
{{Informative | This command does not work on infantry weapons.}} |DESCRIPTION=


| vehicle [[setVehicleTIPars]] [engine, wheels, weapon] |SYNTAX=
|descr= 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.
{{Feature|informative|This command does not work on infantry weapons.}}


|p1= vehicle: [[Object]] - Vehicle whose components are manipulated |PARAMETER1=
|s1= vehicle [[setVehicleTIPars]] [engine, wheels, weapon]


|p2 = [engine, wheels, weapon]: [[Array]] |PARAMETER2=
|p1= vehicle: [[Object]] - Vehicle whose components are manipulated


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


|p4= wheels: [[Number]] - tracks/wheels' heat |PARAMETER4=
|p3= wheels: [[Number]] - tracks/wheels' heat


|p5= weapon: [[Number]] - main weapon's heat |PARAMETER5=
|p4= weapon: [[Number]] - main weapon's heat


| [[Nothing]] |RETURNVALUE=
|r1= [[Nothing]]


|x1= <code>[[vehicle]] [[player]] [[setVehicleTIPars]] [1, 1, 1]; {{cc|set all parts hot}}
|x1= <sqf>
[[vehicle]] [[player]] [[setVehicleTIPars]] [0, 0, 0]; {{cc|set all parts cold}}
vehicle player setVehicleTIPars [1, 1, 1]; // set all parts hot
[[vehicle]] [[player]] [[setVehicleTIPars]] [0.5, 0.5, 0.5]; {{cc|set all parts warm}}
vehicle player setVehicleTIPars [0, 0, 0]; // set all parts cold
</code> |EXAMPLE 1=
vehicle player setVehicleTIPars [0.5, 0.5, 0.5]; // set all parts warm
</sqf>


|x2= <code>[[vehicle]] [[player]] [[setVehicleTIPars]] [1, 0, 0]; {{cc|set the engine warm, perfect for winter}}</code> |EXAMPLE 2=
|x2= <sqf>vehicle player setVehicleTIPars [1, 0, 0]; // set the engine warm, perfect for winter</sqf>


|[[disableTIEquipment]], [[setCamUseTI]] |SEEALSO=
|seealso= [[disableTIEquipment]] [[setCamUseTI]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Revision as of 19:11, 15 August 2022

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