mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-01-10 10:59:36 +08:00
safer UIRoot visibility check
This commit is contained in:
parent
f89455549e
commit
8ef6df043c
@ -12,8 +12,8 @@ namespace UnityExplorer.UI.Models
|
||||
|
||||
public bool Visible
|
||||
{
|
||||
get => UIRoot?.activeInHierarchy ?? false;
|
||||
set => UIRoot?.SetActive(value);
|
||||
get => UIRoot && UIRoot.activeInHierarchy;
|
||||
set { if (UIRoot) UIRoot.SetActive(value); }
|
||||
}
|
||||
|
||||
public abstract void ConstructUI(GameObject parent);
|
||||
|
Loading…
x
Reference in New Issue
Block a user