1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 02:13:29 +08:00

window logic fix

This commit is contained in:
2025-07-11 17:05:50 +08:00
parent 2949066712
commit 4f292bd2d3
2 changed files with 14 additions and 0 deletions

View File

@@ -111,6 +111,13 @@ public class MyCheckButton : MonoBehaviour
}
}
public void SetCheckedWithEvent(bool check)
{
if (_checked == check) return;
Checked = check;
OnChecked?.Invoke();
}
public void SetLabelText(string val)
{
if (labelText != null)