Stash paralax work
This commit is contained in:
21
Assets/Scripts/Minigames/Airplane/Data/SpawnPoolMode.cs
Normal file
21
Assets/Scripts/Minigames/Airplane/Data/SpawnPoolMode.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user