GlobalProp.cs 339 B

12345678910111213
  1. using UnityEngine;
  2. namespace DunGen
  3. {
  4. [AddComponentMenu("DunGen/Random Props/Global Prop")]
  5. public class GlobalProp : MonoBehaviour
  6. {
  7. public int PropGroupID = 0;
  8. public float MainPathWeight = 1;
  9. public float BranchPathWeight = 1;
  10. public AnimationCurve DepthWeightScale = AnimationCurve.Linear(0, 1, 1, 1);
  11. }
  12. }