Ansible2 / Ansible2/Kiska-Function-Library

Developers can select sections of units from a base

Aperta
#125 1 commento 0 reazioni 0 assegnatari Vedi su GitHub
enhancement KISKA_Functions
Lingua principale
SQF
Stelle
0
Fork
1
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

- 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"
};
};
};
};
```

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.