Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SetOverlapping(Type)

Sets which insets are allowed to overlap with the application window.
Read time 1 minuteLast updated 7 days ago

Definition

public void SetOverlapping(AndroidWindowInsets.Type type)

Parameters

type

The complete set of inset types that should overlap with the application window. Replaces the entire overlapping mask.

Remarks

When an inset is overlapping, the application window extends behind it instead of being resized to avoid it. _safeArea excludes areas covered by overlapping insets. The parameter replaces the entire overlapping mask.
Note: Only supported on Android 11 (API 30) or later.

Examples

using UnityEngine;using UnityEngine.Android;public class Controller : MonoBehaviour{ public void Start() { AndroidApplication.currentWindowInsets.SetOverlapping(AndroidWindowInsets.Type.StatusBars | AndroidWindowInsets.Type.NavigationBars); }}