Add source files

This commit is contained in:
2025-05-21 20:19:45 +02:00
parent 0f2a242b30
commit 71163fc589
284 changed files with 272526 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
using System;
using UnityEngine;
using UnityEngine.UI;
// Token: 0x02000098 RID: 152
public class BtnAlphaThreshold : MonoBehaviour
{
// Token: 0x06000E7A RID: 3706 RVA: 0x00115CE0 File Offset: 0x00113EE0
private void Awake()
{
base.gameObject.GetComponent<Image>().alphaHitTestMinimumThreshold = this.threshold;
base.enabled = false;
}
// Token: 0x0400170B RID: 5899
public float threshold = 0.5f;
}