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

19 lines
470 B
C#

using AwesomeTechnologies.VegetationSystem;
using UnityEngine;
namespace AwesomeTechnologies.Utility.Baking
{
public class SceneVegetationBaker : MonoBehaviour
{
public VegetationSystemPro VegetationSystemPro;
public bool ExportStatic = true;
public int VegetationPackageIndex;
private void Reset()
{
VegetationSystemPro = gameObject.GetComponent<VegetationSystemPro>();
}
}
}