How to hide all UIViews
Example
The example below shows how to hide all views.
using Doozy.Runtime.UIManager.Containers;
using UnityEngine;
namespace Sandbox
{
public class TestClass : MonoBehaviour
{
private void OnEnable()
{
UIView.HideAllViews(); // ANIMATED
UIView.HideAllViews(true); // INSTANT
}
}
}