open class VrActivity
VrActivity
()
|
Signature
constructor() Returns |
componentManager
: ComponentManager
[Get] |
Signature
val componentManager: ComponentManager |
scene
: Scene
[Get] |
Signature
val scene: Scene |
spatialContext
: SpatialContext
[Get] |
Signature
val spatialContext: SpatialContext |
systemManager
: SystemManager
[Get] |
Signature
val systemManager: SystemManager |
audioPauseMode
()
|
Controls when audio is automatically paused and resumed.
Override this method to change the audio pause behavior:
Example:
override fun audioPauseMode(): AudioPauseMode = AudioPauseMode.OPENXR_FOCUS
Signature
open fun audioPauseMode(): AudioPauseMode Returns |
dispatchGenericMotionEvent
(
event
)
|
Dispatches a generic motion event to the appropriate game controller.
Signature
open fun dispatchGenericMotionEvent(event: MotionEvent): Boolean Parameters
event:
MotionEvent
Returns
Boolean
|
dispatchKeyEvent
(
event
)
|
Dispatches a key event to the appropriate game controller.
Signature
open fun dispatchKeyEvent(event: KeyEvent): Boolean Parameters
event:
KeyEvent
Returns
Boolean
|
doFrame
(
frameTimeNanos
)
|
Called when a new display frame is being rendered.
Signature
open fun doFrame(frameTimeNanos: Long) Parameters
frameTimeNanos:
Long
|
findFeature
(
clazz
)
|
Signature
fun <T : SpatialFeature> findFeature(clazz: KClass<T>): T Parameters
clazz:
KClass
Returns |
findFeature
()
|
Signature
inline fun <T : SpatialFeature> findFeature(): T Returns |
getComponentManager
()
|
Returns the singleton component manager for the application.
Signature
fun getComponentManager(): ComponentManager |
getDataModel
()
|
Returns the singleton DataModel for the application.
Signature
fun getDataModel(): DataModel |
getGameControllerDeviceIds
()
|
Returns a set of device IDs for all connected game controllers.
Signature
fun getGameControllerDeviceIds(): Set<Int> Returns
Set
|
getSceneObject
()
|
Returns the singleton scene object for the application.
Signature
fun getSceneObject(): Scene |
getSystemManager
()
|
Returns the singleton system manager for the application.
Signature
fun getSystemManager(): SystemManager |
internalOnSessionStateChanged
(
stateValue
)
|
Internal JNI callback that receives the session state as an integer from C++. This method converts the integer to a SessionState enum and calls the public callback. Applications should not override this method.
Signature
open fun internalOnSessionStateChanged(stateValue: Int) Parameters
stateValue:
Int
|
loadLibrary
(
name
)
|
Loads a native C++ library. This method should be called in onCreate().
Signature
open fun loadLibrary(name: String) Parameters
name:
String
|
onCreate
(
savedInstanceState
)
|
Called when the VRActivity is first created. This method creates the necessary building blocks for a Spatial application. It initializes the VrActivity, including loading the Meta Spatial SDK library, registering game controller management, creating a new spatial instance, and initializing the SpatialFeature manager.
Signature
open fun onCreate(savedInstanceState: Bundle?) Parameters
savedInstanceState:
Bundle?
|
onDestroy
()
|
Called when the app is destroyed. VrActivity::onDestroy will clean up all the resources and trigger garbage collection. If you override this method, be sure to call super.onDestroy().
Signature
open fun onDestroy() |
onHMDMounted
()
|
Signature
open fun onHMDMounted() |
onHMDUnmounted
()
|
Signature
open fun onHMDUnmounted() |
onPause
()
|
Called as part of the activity lifecycle when an activity is going into the background, but has not yet been killed. The counterpart to onResume(). If you override this method, be sure to call super.onPause().
Signature
open fun onPause() |
onPostResume
()
|
Called after activity resume is complete. If you override this method, be sure to call super.onPostResume().
Signature
open fun onPostResume() |
onRecenter
(
isUserInitiated
)
|
This hook is called when the VRActivity is recentered.
Signature
open fun onRecenter(isUserInitiated: Boolean) Parameters
isUserInitiated:
Boolean
|
onResume
()
|
Called when the activity will start interacting with the user. If you override this method, be sure to call super.onResume()
Signature
open fun onResume() |
onSceneReady
()
|
This hook is called on the first onResume(), after the scene is loaded in onCreate(). It will invoke all the onSceneReady() hooks of the registered SpatialFeatures.
Signature
open fun onSceneReady() |
onSceneTick
()
|
Called every tick in the application to update the scene.
Signature
open fun onSceneTick() |
onSessionStateChanged
(
state
)
|
Called when the OpenXR session state changes.
This callback is invoked whenever the XR runtime transitions between different session states. Applications can override this method to respond to state changes, such as preparing resources when the session becomes ready, or pausing rendering when losing focus.
Signature
open fun onSessionStateChanged(state: SessionState) Parameters |
onSpatialShutdown
()
|
Called when the VRActivity is shutting down. This method will invoke all the onSpatialShutdown() callbacks of the registered SpatialFeatures.
Signature
open fun onSpatialShutdown() |
onStart
()
|
Called when the activity is becoming visible to the user. If you override this method, be sure to call super.onStart().
Signature
open fun onStart() |
onStop
()
|
Called when the app is no longer visible to the user. You will next receive either onRestart(), onDestroy(), or nothing, depending on later user activity. If you override this method, be sure to call super.onStop().
Signature
open fun onStop() |
onVRPause
()
|
This hook is called when the VRActivity switches from immersive to non-immersive mode. It will invoke all the onVRPause() hooks of the registered SpatialFeatures.
Signature
open fun onVRPause() |
onVRReady
()
|
This hook is called when the immersive Spatial application is first loaded or is changed from 2D mode to immersive (VR) mode. It will invoke all the onVRReady() hooks of the registered SpatialFeatures.
Signature
open fun onVRReady() |
pinGameController
(
deviceId
, func
)
|
Pins a game controller with the given device ID and associates it with the given function.
Parameters
deviceId:
Int
func:
Function2
|
registerFeatures
()
|
Override this method to register your own SpatialFeatures. This is called in onCreate().
Signature
open fun registerFeatures(): List<SpatialFeature> Returns
List
|
registerRequiredOpenXRExtensions
()
|
Signature
open fun registerRequiredOpenXRExtensions(): List<String> Returns
List
|
registerSystemFeatures
()
|
Signature
open fun registerSystemFeatures(): List<SpatialFeature> Returns
List
|
renderConfiguration
()
|
Controls the render resolution scaling for VR applications.
This configuration allows adjusting the resolution at which VR content is rendered, which affects both visual quality and performance.
Signature
open fun renderConfiguration(): RenderConfiguration Returns |
runOnMainThread
(
runnable
)
|
This method provides a way to run a Runnable on the activity's main thread.
Signature
fun runOnMainThread(runnable: Runnable) Parameters
runnable:
Runnable
|
setBaseHref
(
baseHref
)
|
Sets the base href for the application.
Signature
open fun setBaseHref(baseHref: String) Parameters
baseHref:
String
|
tryFindFeature
(
clazz
)
|
Signature
fun <T : SpatialFeature> tryFindFeature(clazz: KClass<T>): T? Parameters
clazz:
KClass
Returns |
tryFindFeature
()
|
Signature
inline fun <T : SpatialFeature> tryFindFeature(): T? Returns |
unpinGameController
(
deviceId
)
|
Unpins a game controller with the given device ID.
Signature
fun unpinGameController(deviceId: Int) Parameters
deviceId:
Int
|
useVolumes
()
|
Signature
open fun useVolumes(): Boolean Returns
Boolean
|