Files
AppleHillsProduction/Assets/Scripts/Minigames/Airplane/Data/SpawnPoolMode.cs

22 lines
606 B
C#
Raw Normal View History

2025-12-17 12:39:44 +01:00
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
}
}