Emulator
The Emulator lets you test mixed reality applications on your PC without a real XREAL Light glasses and computing unit. With Emulator, you can speed up app development by testing, iterating and debugging without having to build and deploy the app to XREAL device. You could simply use Unity to test your app by importing an Emulator Prefab.
Controlling the Emulator is very similar to common 3D video games. You can use keyboard and mouse to control the head pose movement, controller rotation, trackable planes or images in 3D space.
In this section, you will learn:
- How to enable Unity to debug MR apps as an Emulator.
- How to simulate input events that are usually read by XREAL Light glasses and controller sensors by using your keyboard and mouse when debugging.
Prerequisitesβ
- Understanding NRSDK concept and working flow
- Import NRSDK into Unity
- Have the code and resources of your app ready
Find Emulator in NRSDK packageβ
NRSDK > Emulator

Emulator Structureβ
Emulator folder contains all the code and resources of Emulator, here is a brief introduction for you to lookup.
- Editor contains the script used for modifying Unity Editor.
- Image contains the UI image resources to show controller state.
- Material contains the materials for TrackableImage and TrackablePlane in Emulator.
- Model contains the room model used in the sample scene.
- Prefabs
NRTrackableImageTarget.prefabused for simluating the detection of images.NRTrackablePlaneTarget.prefabused for simulating the detection of planes.
- Resources used for dynamic loading resource.
- Scene contains two demos for testing TrackableImage and TrackablePlane.
- Script
NativeEmulator.csused for calling low-level API.NREmulatorManager.csis the script for managing the life cycle of Emulator.NREmulatorController.cssimulates the input of controller.NREmulatorHeadPose.cssimulates the headpose movement.NRTrackableImageBehaviour.csis the script to simulate the trackable images.NRTrackablePlaneBehaviour.csis the script to simulate the trackable planes.NRTrackableObserver.csis the observer of trackable target.TrackableFoundTest.csis a testing script that.
Simulating the 6DoF Head Poseβ
-
Use WSAD on the keyboard to simulate the movement of the position of the head.
W -> move forward. S -> move backward. A -> move left. D -> move right.
-
Press Space key and Use the Mouse to simulate the rotation of the head.
-
Sample Code:
void UpdateHeadPosByInput()
{
float mouse_x = Input.GetAxis("Mouse X") * HeadRotateSpeed;
float mouse_y = Input.GetAxis("Mouse Y") * HeadRotateSpeed;
Vector3 mouseMove = new Vector3(m_CameraTarget.transform.eulerAngles.x - mouse_y, m_CameraTarget.transform.eulerAngles.y + mouse_x, 0);
Quaternion q = Quaternion.Euler(mouseMove);
m_CameraTarget.transform.rotation = q;
Vector3 p = GetBaseInput();
p = p * HeadMoveSpeed * Time.deltaTime;
Vector3 pos = p + m_CameraTarget.transform.position;
m_CameraTarget.transform.position = pos;
// Call api to simulate the headpose movement
NREmulatorManager.Instance.NativeEmulatorApi.SetHeadTrackingPose(pos, q);
}
Simulating 3DoF Rotation of Controllerβ
Sample Code:
NREmulatorController.cs
// Control the rotation of controller
void UpdateControllerRotateByInput()
{
float mouse_x = Input.GetAxis("Mouse X") * HeadRotateSpeed;
float mouse_y = Input.GetAxis("Mouse Y") * HeadRotateSpeed;
Vector3 mouseMove = new Vector3(m_Target.transform.eulerAngles.x - mouse_y, m_Target.transform.eulerAngles.y + mouse_x, 0);
Quaternion q = Quaternion.Euler(mouseMove);
m_Target.transform.rotation = q;
NREmulatorManager.Instance.NativeEmulatorApi.SetControllerRotation(new Quaternion(q.x, q.y, q.z, q.w));
}
Simulating Controller Inputβ
Phone Controllerβ

Selecting Emulate Virtual Display In Editor on NRInput to enable Phone Controller simulation that stays at the lower-right corner of the Game window.
- Mouse left on TouchPad area -> Select Button
- Mouse left on APP -> App button
- Mouse left on HOME -> Home Button

Tutorial: Simulating Headpose, Controller & Trackable Objectβ
Run the Sampleβ
First , Assets/NRSDk/Emulator/Scenes/TrackableImageEmulator.unity and Assets/NRSDk/Emulator/Scenes/TrackablePlaneEmulator.unity are two samples for the Emulator. Developers could directly play the scene in Unity Editor or build them into apk and run on an XREAL Device.
Create your ownβ
- Make sure you have
Assets/NRSDK/Prefabs/NRCamreaRig.prefabandNRSDK/Prefabs/NRInput.prefabin the scene.
- When Unity Editor under runtime, the
NREmulatorHeadPose.prefabwill be automatically loaded byNRCameraRig.prefabinto the scene for simulating the head pose data.- When Unity Editor under runtime, the
EmualatorController.Prefabwill be automatically loaded byNRInput.prefabinto the scene for simulating the controller input data.
- Place
Assets/NRSDK/Emulator/Prefabs/NRTrackableImageTarget.prefaborAssets/NRSDK/Emulator/Prefabs/NRTrackablePlaneTarget.prefabto simulate the trackable images and planes.
TrackableObserver.csis attached to everyNRTrackableImageTarget.prefabandNRTrackablePlaneTarget.prefab. You need to register your own logic of Trackable found and lost into TrackableObserver.
- In
/Assets/NRSDK/Emulator/Scripts/TrackableFoundTest.cs, you could find the sample for the register event.
- Sample Code:
TrackableFoundTest.cspublic class TrackableFoundTest : MonoBehaviour {
// Observer of the registed event
public TrackableObserver Observer;
// Showing GameObject on the detected Trackable object
public GameObject Obj;
void Start ()
{
Obj.SetActive(false);
Observer.FoundEvent += Found;
Observer.LostEent += Lost;
}
private void Found(Vector3 pos, Quaternion qua)
{
Obj.transform.position = pos;
Obj.transform.rotation = qua;
Obj.SetActive(true);
}
private void Lost()
{
Obj.SetActive(false);
}
}
- If you want to use your image as a detection target, you could switch the image database in
NRTrackableImageTarget.prefab
β 
In NRSDK, we provided you with three default images for image detection. If you would like to add your own, please find
NRCameraRig.prefab
- Find
NRKernalSessionConfig.assetunder theNRSessionBehaviour.cs
Find TrackingImageDatabase in the
NRKernalSessionConfig.asset, and drag your own database.asset into it.
Refer to [Image Tracking](https://nrealsdkdoc.readthedocs.io/en/latest/Docs/Unity_EN/Develop/Image Tracking.html#image-tracking) for more inforamtion



