22 lines
606 B
C#
22 lines
606 B
C#
|
|
namespace Minigames.Airplane.Data
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Defines how multiple spawn pools are combined.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum SpawnPoolMode
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// All unlocked pools contribute to a single shared spawn stream.
|
|||
|
|
/// Objects spawn at regular intervals considering all available pools.
|
|||
|
|
/// </summary>
|
|||
|
|
Together,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Each pool spawns independently with its own timing.
|
|||
|
|
/// Multiple objects can spawn simultaneously from different pools.
|
|||
|
|
/// </summary>
|
|||
|
|
Exclusive
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|