LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/TileSet.cs

29 lines
810 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System;
using System.Collections.Generic;
using UnityEngine;
namespace DunGen
{
[Serializable]
[CreateAssetMenu(menuName = "DunGen/Tile Set", order = 700)]
public sealed class TileSet : ScriptableObject
{
public GameObjectChanceTable TileWeights = new GameObjectChanceTable();
public List<LockedDoorwayAssociation> LockPrefabs = new List<LockedDoorwayAssociation>();
public void AddTile(GameObject tilePrefab, float mainPathWeight, float branchPathWeight)
{
TileWeights.Weights.Add(new GameObjectChance(tilePrefab, mainPathWeight, branchPathWeight, this));
}
public void AddTiles(IEnumerable<GameObject> tilePrefab, float mainPathWeight, float branchPathWeight)
{
foreach (GameObject item in tilePrefab)
{
AddTile(item, mainPathWeight, branchPathWeight);
}
}
}
}