• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

Level Design Random Artillery Properties

nymets1104

Grizzled Veteran
Dec 18, 2012
2,432
24
USA
I cannot find any documentation or information on what all of these options mean. I can spawn artillery no problem, but would love to know what all of these options control, if anything.

Spoiler!


I am really wanting to spawn random bullet impacts if anyone knows how to do this.
 
I cannot find any documentation or information on what all of these options mean. I can spawn artillery no problem, but would love to know what all of these options control, if anything.

Spoiler!


I am really wanting to spawn random bullet impacts if anyone knows how to do this.

I'm unsure nymets, but the only thing I can think of is using an emitter to spawn the bullet impacts randomly, or somehow turn a projected texture on and off at random intervals.
 
Upvote 0
I'm unsure nymets, but the only thing I can think of is using an emitter to spawn the bullet impacts randomly, or somehow turn a projected texture on and off at random intervals.

Good call, i will play with that.

Shepard grabbed this from the code:// Artillery Type
enum EArtilleryType
{
ROAT_Mortar,
ROAT_Artillery,
ROAT_Rocket
};

And

enum EROArtyBatterySize
{
BAT_4_to_6,
BAT_8_to_12,
BAT_15,
};

So each requires a value of 0,1, or 2.
 
Upvote 0