Projectile launcher

This commit is contained in:
Martin
2022-11-30 09:37:09 +01:00
parent 7e20e41482
commit ac9b67503d
7 changed files with 465 additions and 284 deletions

View File

@@ -18,9 +18,15 @@ export class WeaponSettings {
}
export class HaloLauncherSettings {
public projectilesToSpawn = 0;
public launcher = new ProjectileLauncherSettings();
}
export class ProjectileLauncherSettings {
public projectileLifetime = 0;
public projectileSpeed = 0;
public projectilesToSpawn = 0;
public wavesToShoot = 0;
public wavesDelayMs = 0;
public cooldown = 0;
}