Ansible2 / Ansible2/Kiska-Function-Library

Developers can select sections of units from a base

オープン
#125 コメント 1 件 リアクション 0 件 担当者 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 を短くまとめたダイジェスト。