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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user