LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/GlobalProp.cs
2023-12-22 18:30:10 -05:00

16 lines
328 B
C#

using UnityEngine;
namespace DunGen
{
[AddComponentMenu("DunGen/Random Props/Global Prop")]
public class GlobalProp : MonoBehaviour
{
public int PropGroupID;
public float MainPathWeight = 1f;
public float BranchPathWeight = 1f;
public AnimationCurve DepthWeightScale = AnimationCurve.Linear(0f, 1f, 1f, 1f);
}
}