Hi,
The problem in my game is that Home Indicator activates with any click on the screen and I can’t leave it like this.
Documentation says:
“prefersHomeIndicatorAutoHidden” — iOS only; specify a boolean for value. If set, iPhone X software home indicator would autohide if screen is not interacted with
and
“preferredScreenEdgesDeferringSystemGestures” — iOS only; specify a boolean for value. If set, system gestures (Control Center, notification bar, etc.) would not work immediately, but require additional swipe to activate. When possible this setting should be left at default false but can be useful to prevent accidental activation of system gestures in swipe heavy games
display.setStatusBar( display.HiddenStatusBar ) native.setProperty( "prefersHomeIndicatorAutoHidden", true ) native.setProperty( "preferredScreenEdgesDeferringSystemGestures", true )
But it does not any effect
My game video
video as it should be (not mine game example). To use the home indicator in this example user needs to drag it really high, almost to the middle off the screen
Any thoughts ?
Kind regands,
-Dmytro