canVehicleCargo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " |r1=[[" to " |r1= [[") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 14: | Line 14: | ||
|p2= cargo: [[Object]] - cargo to put in vehicle | |p2= cargo: [[Object]] - cargo to put in vehicle | ||
|r1= [[Array]] - [ | |r1= [[Array]] of [[Boolean]]s - [willFitIntoCurrentVehicle, willFitIntoEmptyVehicle] | ||
|x1= Blackfish with no vehicle cargo loaded | |x1= Blackfish with no vehicle cargo loaded | ||
< | <sqf>private _result = blackfish canVehicleCargo offroad; // [true, true]</sqf> | ||
</ | |||
|x2= Blackfish with one vehicle cargo called offroad already loaded | |x2= Blackfish with one vehicle cargo called offroad already loaded | ||
< | <sqf>private _result = blackfish canVehicleCargo offroad; // [false, false]</sqf> | ||
</ | Even if the Blackfish were empty, the offroad could not be loaded because it is already in a cargo space | ||
Even if the Blackfish | |||
|x3= Blackfish with one vehicle cargo called offroad already loaded | |x3= Blackfish with one vehicle cargo called offroad already loaded | ||
< | <sqf>private _result = blackfish canVehicleCargo offroad2; // [false, true]</sqf> | ||
</ | offroad2 can't be loaded because there isn't enough space in the Blackfish, but if there were space offroad2 could be loaded into the Blackfish | ||
offroad2 can't be loaded because there isn't enough space in the Blackfish, but if there | |||
|seealso= [[ | |seealso= [[Arma 3: Vehicle in Vehicle Transport|Vehicle in Vehicle Transport]] [[setVehicleCargo]] [[enableVehicleCargo]] [[getVehicleCargo]] [[isVehicleCargo]] [[vehicleCargoEnabled]] | ||
}} | }} |
Revision as of 17:01, 14 April 2022
Description
- Description:
- Returns bool array if it is possible to load cargo inside vehicle and if possible to load cargo into empty vehicle
- Groups:
- Vehicle in Vehicle Transport
Syntax
- Syntax:
- vehicle canVehicleCargo cargo
- Parameters:
- vehicle: Object - vehicle carrying cargo
- cargo: Object - cargo to put in vehicle
- Return Value:
- Array of Booleans - [willFitIntoCurrentVehicle, willFitIntoEmptyVehicle]
Examples
- Example 1:
- Blackfish with no vehicle cargo loaded
- Example 2:
- Blackfish with one vehicle cargo called offroad already loaded Even if the Blackfish were empty, the offroad could not be loaded because it is already in a cargo space
- Example 3:
- Blackfish with one vehicle cargo called offroad already loaded offroad2 can't be loaded because there isn't enough space in the Blackfish, but if there were space offroad2 could be loaded into the Blackfish
Additional Information
- See also:
- Vehicle in Vehicle Transport setVehicleCargo enableVehicleCargo getVehicleCargo isVehicleCargo vehicleCargoEnabled
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