| Parameter | Description |
|---|---|
| type | The complete set of inset types that should overlap with the application window. Replaces the entire overlapping mask. |
Sets which insets are allowed to overlap with the application window.
When an inset is overlapping, the application window extends behind it instead of being resized to avoid it. Screen.safeArea excludes areas covered by overlapping insets. The parameter replaces the entire overlapping mask.
Note: Only supported on Android 11 (API 30) or later.
using UnityEngine; using UnityEngine.Android;
public class Controller : MonoBehaviour { public void Start() { AndroidApplication.currentWindowInsets.SetOverlapping(AndroidWindowInsets.Type.StatusBars | AndroidWindowInsets.Type.NavigationBars); } }