This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
using UnityEngine;
// Token: 0x02000A14 RID: 2580
[Serializable]
public struct ProximityScoreSettings
{
// Token: 0x0400366E RID: 13934
public float MinThreshold;
// Token: 0x0400366F RID: 13935
public float MaxThreshold;
// Token: 0x04003670 RID: 13936
public float MinScore;
// Token: 0x04003671 RID: 13937
public float MaxScore;
// Token: 0x04003672 RID: 13938
public bool UseCurve;
// Token: 0x04003673 RID: 13939
public AnimationCurve DistanceScoreCurve;
}