Level Generator

This commit is contained in:
Tomáš Pěnkava
2025-06-25 23:54:00 +02:00
parent e3bd7714dd
commit 4ee2c5a2c2
11 changed files with 373 additions and 159 deletions
@@ -0,0 +1,14 @@
using UnityEngine;
[CreateAssetMenu(fileName = "MapLayout", menuName = "Scriptable Objects/MapLayout")]
public class MapLayout : ScriptableObject
{
/// <summary>
/// 2D grid. Každý øádek je jeden “øádek” mapy, nahoøe = vyšší Z.
/// Èíslice = index prefab-u v MapGenManager.mapPrefab,
/// '-' = prázdné místo,
/// 'S' = startovní místnost.
/// </summary>
[TextArea(5, 20)]
public string grid;
}