Firstborn/Assets/AwesomeTechnologies/VegetationStudioPro/Runtime/VegetationSystemPro/VegetationSystemPro_Predict...
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

31 lines
872 B
C#

using System.Collections;
using System.Collections.Generic;
using AwesomeTechnologies.VegetationSystem;
using UnityEngine;
namespace AwesomeTechnologies.VegetationSystem
{
public partial class VegetationSystemPro
{
private void SetupPredictiveCellLoader()
{
PredictiveCellLoader = new PredictiveCellLoader(this);
}
public void PreloadArea(Rect rect, bool important)
{
PredictiveCellLoader?.PreloadArea(rect, important);
}
public void PreloadArea(Rect rect, List<VegetationCell> overlapVegetationCellList, bool important)
{
PredictiveCellLoader?.PreloadArea(rect,overlapVegetationCellList,important);
}
public void PreloadAllVegetationCells()
{
PredictiveCellLoader?.PreloadAllVegetationCells();
}
}
}