Ansible2 / Ansible2/Kiska-Function-Library

Developers can select sections of units from a base

未关闭
#125 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
enhancement KISKA_Functions
主要语言
SQF
星标
0
派生
1
PR 合并指标
30 天内没有已合并 PR

描述

- For a given spawn type (agents, infantry, etc.), developers can distinguish between and select sub-classes
- For example, developers can easily select only the units created from `Camp1_path` and ***not*** `Camp1_static`.
```cpp
class infantry
{
class Camp1_path
{
numberOfUnits = 25;
unitsPerGroup = 5;
canPath = ON;

positions = "Camp 1 Path Spawns";
dynamicSim = ON;

class reinforce
{
id = "Camp1_Pathing";
canCall[] = {
"Camp2_path_1"
};
};
};

class Camp1_static
{
numberOfUnits = -1;
unitsPerGroup = 1;
canPath = OFF;

positions = "Camp 1 Static Spawns";
dynamicSim = ON;

class reinforce
{
id = "Camp1_static";
canCall[] = {
"Camp1_Pathing"
};
};
};
};
```

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。