This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
@@ -0,0 +1,19 @@
using System.Collections.Generic;
using Sirenix.OdinInspector;
using UnityEngine;
using VOID.Generic.World;
namespace VOID.ScriptableObjects.World
{
[CreateAssetMenu(menuName = "GAME DATA/Świat/WorldGeneratorSettings")]
public class WorldGeneratorSettings : ScriptableObject
{
[InfoBox(nameof(ComplexArea) + " and its variants to select for <b>STARTING</b> area.")]
[RequiredListLength(MinLength = 1)]
public List<ComplexArea> startingComplexAreas = new();
[InfoBox(nameof(ComplexArea) + " and its variants to use for generating process.")]
[RequiredListLength(MinLength = 1)]
public List<WorldAreaGeneratorSettings> list = new();
}
}