Some more airplane game doodles

This commit is contained in:
Michal Pikulski
2025-12-08 12:56:14 +01:00
parent 861749485e
commit 41d99a1390
58 changed files with 3319 additions and 147 deletions

View File

@@ -0,0 +1,24 @@
namespace Minigames.Airplane.Data
{
/// <summary>
/// Defines how spawned objects are positioned vertically.
/// </summary>
public enum SpawnPositionMode
{
/// <summary>
/// Raycast down to find ground and snap object's bottom to ground surface.
/// </summary>
SnapToGround,
/// <summary>
/// Spawn at a specific Y coordinate.
/// </summary>
SpecifiedY,
/// <summary>
/// Spawn at a random Y coordinate within a specified range.
/// </summary>
RandomRange
}
}