Package arc.backend.robovm
Class IOSApplicationConfiguration
java.lang.Object
arc.backend.robovm.IOSApplicationConfiguration
-
Field Summary
Modifier and TypeFieldDescriptionfloat
the update interval to poll the accelerometer with, in secondsorg.robovm.apple.glkit.GLKViewDrawableColorFormat
the color format, RGB565 is the defaultorg.robovm.apple.glkit.GLKViewDrawableDepthFormat
the depth buffer format, Format16 is defaulthandles any errors in the main loop.boolean
whether the home indicator should be hidden or notboolean
whether or not the onScreenKeyboard should be closed on return keyorg.robovm.apple.glkit.GLKViewDrawableMultisample
the multisample format, None is defaultboolean
whether or not landscape orientation is supported.boolean
whether or not portrait orientation is supported.int
number of frames per second, 60 is defaultboolean
whether to enable screen dimming.org.robovm.apple.uikit.UIRectEdge
Edges where app gestures must be fired over system gestures.org.robovm.apple.glkit.GLKViewDrawableStencilFormat
the stencil buffer format, None is defaultboolean
whether to use the accelerometer, default trueboolean
Whether to enable OpenGL ES 3 if supported. -
Constructor Summary
-
Method Summary
-
Field Details
-
preventScreenDimming
public boolean preventScreenDimmingwhether to enable screen dimming. -
orientationPortrait
public boolean orientationPortraitwhether or not portrait orientation is supported. -
orientationLandscape
public boolean orientationLandscapewhether or not landscape orientation is supported. -
colorFormat
public org.robovm.apple.glkit.GLKViewDrawableColorFormat colorFormatthe color format, RGB565 is the default -
depthFormat
public org.robovm.apple.glkit.GLKViewDrawableDepthFormat depthFormatthe depth buffer format, Format16 is default -
stencilFormat
public org.robovm.apple.glkit.GLKViewDrawableStencilFormat stencilFormatthe stencil buffer format, None is default -
multisample
public org.robovm.apple.glkit.GLKViewDrawableMultisample multisamplethe multisample format, None is default -
preferredFramesPerSecond
public int preferredFramesPerSecondnumber of frames per second, 60 is default -
errorHandler
handles any errors in the main loop. -
useAccelerometer
public boolean useAccelerometerwhether to use the accelerometer, default true -
accelerometerUpdate
public float accelerometerUpdatethe update interval to poll the accelerometer with, in seconds -
keyboardCloseOnReturn
public boolean keyboardCloseOnReturnwhether or not the onScreenKeyboard should be closed on return key -
useGL30
public boolean useGL30Whether to enable OpenGL ES 3 if supported. If not supported it will fall-back to OpenGL ES 2.0. When GLES3 is enabled,Core.gl30
can be used to access its functionality. -
hideHomeIndicator
public boolean hideHomeIndicatorwhether the home indicator should be hidden or not -
screenEdgesDeferringSystemGestures
public org.robovm.apple.uikit.UIRectEdge screenEdgesDeferringSystemGesturesEdges where app gestures must be fired over system gestures. Prior to iOS 11, UIRectEdge.All was default behaviour if status bar hidden, see #5110
-
-
Constructor Details
-
IOSApplicationConfiguration
public IOSApplicationConfiguration()
-