Retrieves the configured behavior of system bars, such as status and navigation bars.
This behavior determines how system gestures reveal the system bars when hidden at runtime.
using UnityEngine; using UnityEngine.Android;
public class Controller : MonoBehaviour { public void Start() { Debug.Log("SystemBarsBehavior: " + AndroidApplication.currentWindowInsets.GetSystemBarsBehavior()); } }