武装突袭 Wiki
Advertisement
Introduced with Arma 3 version 1.36
  

点击图片可看到更多讯息

开始使用于

游戏:
Arma 3
版本:
1.36

描述

描述:
Returns an array of config entries which meet criteria in condition code. Command iterates through available classes and config properties for given config entry. If 3rd param is true the search also includes inherited properties. Current looked at config is stored in _x variable (similar to alternative count command implementation). Condition has to return true in order for the looked at property to be added to the resulting array.
File:Warning.png The condition code passed to configProperties should only be used for simple filter expressions and nothing more

基本句法

句法:
configProperties [config, condition, inherit]
参数:
[config, condition, inherit]: Array
config: Config - config entry to search
condition: String - (optional, default: "true") code, which if returns true, adds current property to result
inherit: Boolean - (optional, default: true) include inherited properties
返回值:
Array - Array of Configs

范例

范例1:
_configs = configProperties [configFile >> "CfgVehicles" >> "O_Truck_02_box_F"];
范例2:
_configs = configProperties [configFile >> "RscText", "true", true];
范例3:
Get all hitpoints of a truck:_hitPoints = []; _hitPointsCfgs = configProperties [ configFile >> "CfgVehicles" >> "O_Truck_02_box_F" >> "HitPoints", "true", true ]; hint str _hitPointsCfgs;

额外资讯

多人游戏:
-
也可以看看:
ConfigconfigFilemissionConfigFileconfigClassesconfigHierarchy

注意事项

此处撰写句法皆为可行用法. 可到官网[1]专页回报错误. 你可以使用讨论页面或是论坛来进行讨论.
新增注意事项 | 如何新增?
Advertisement