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

17 lines
328 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
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);
}
}