Skip to main content

Create a simple shared AR experience v0.5

This section describes how to use ConjureKit and Manna module to create a shared AR experience from scratch in Unity.

Before you begin

Before getting started, complete the following steps:

  1. Check the Prerequisites.
  2. Set up your development environment by following the steps in the Quickstart.

Preparing the project with ARFoundation

  1. Configure the project for XR development. Go to Edit -> Project Settings -> XR Plug-In Management
    • -> iOS and enable the ARKit checkbox for iOS devices.
    • -> Android and enable the ARCore checkbox for Android devices.
  2. Configure build parameters. Go to Project Settings -> Player
    • -> iOS -> Other Settings -> Camera Usage Description and write a camera description, e.g., "AR requires a camera".
      • On Android, this permission is automatically added to manifest on build. Android will ask for Camera permissions when the app will first run.
    • -> Android -> Other Settings and have
      • Auto Graphics API disabled and OpenGLES3 at the top of the list
      • Scripting backend set to IL2CPP and both ARMv7 and ARM64 selected in Target Architectures
  3. Go to Package Manager -> Unity Registry, and Install ARFoundation.
caution

We suggest to check which ARFoundation and ARKit/ARCore package versions are installed by Package Manager, as they might not be equal. This is not automatically handled when installing a "Preview" version and mismatch can happen.

note

ARFoundation versions below 4.2.6 do not support iOS 16.

ConjureKit currently does not yet support ARFoundation 5.

  1. Start with an empty scene with no GameObjects.
  2. Create a new AR Session Origin by selecting GameObject -> XR -> AR Session Origin.
  3. Add a new ARTrackedImageManager component to the AR Session Origin GameObject.
  4. Create a new ReferenceImageLibrary by selecting Assets -> Create -> XR -> Reference Image Library. and drag it to the “serialized library” field in the ARTrackedImageManager component.
  5. Set "Max Number Of Moving Images" field in the ARTrackedImageManager component to 1.
  6. Create a new AR Session by selecting GameObject -> XR -> AR Session.

Project with ARFoundation

Initializing ConjureKit

  1. Install the ConjureKit package.
  2. Create a new MonoBehaviour script and attach it to an empty game object in the scene.
  3. Import ConjureKit.
using Auki.ConjureKit;
  1. Create a private IConjureKit variable.
private IConjureKit _conjureKit;
  1. Create a public Camera variable.
public Camera arCamera;
  1. Drag the AR Camera to the arCamera field on the GameObject you created;

Scene setup

  1. Initialize ConjureKit with the app key and secret from the posemesh console (cf. the Quickstart guide)
caution

Never share your app secret with anyone.

  1. Call _conjureKit.Connect() to connect to a Hagall server with the lowest latency and create a session.
using Auki.ConjureKit;

public class ConjureKitDemo : MonoBehaviour
{
public Camera arCamera;

private IConjureKit _conjureKit;

private void Start()
{
_conjureKit = new ConjureKit(
ConjureKitConfiguration.Get(), arCamera.transform,
"YOUR_APP_KEY",
"YOUR_APP_SECRET");


_conjureKit.Connect();
}
}
  1. Declare two new Text fields to display the session ID and session state on screen.
[SerializeField] private Text sessionState;
[SerializeField] private Text sessionID;
  1. Register a callback to the _conjureKit.OnStateChanged event that fires every time our session state changes.
_conjureKit.OnStateChanged += state =>
{
sessionState.text = state.ToString();
};
  1. Register callback to _conjureKit.OnJoined and _conjureKit.OnLeft which are triggered when we join and leave a session.
_conjureKit.OnJoined += session =>
{
sessionID.text = session.Id;
};

_conjureKit.OnLeft += () =>
{
sessionID.text = "";
};
  1. Create two Text elements and drag and drop them to the fields you declared in step 8.

  2. Click Play in Unity Editor. Now you'll see the state of your connection logged in the console and session id and state on the screen.

Session id and state text

Adding an entity

Follow these steps to add an Entity to the session and instantiate a Primitive Cube that would appear in the same location in AR for all participants in the session:

  1. Create a method, CreateCubeEntity, that adds an Entity to the session
public void CreateCubeEntity()
{
if (_conjureKit.GetState() != State.Calibrated)
return;

Vector3 position = arCamera.transform.position + arCamera.transform.forward * 0.5f;
Quaternion rotation = Quaternion.Euler(0, arCamera.transform.eulerAngles.y, 0);

Pose entityPos = new Pose(position, rotation);

_conjureKit.AddEntity(
entityPos,
onComplete: entity => CreateCube(entity),
onError: error => Debug.Log(error));
}

Calling AddEntity adds a new Entity to the Session and invokes the onComplete callback, CreateCube, with the newly created entity.

  1. We need something to visualize the Entities. Declare a public GameObject variable to reference a cube prefab. Implement the CreateCube method that instantiates a cube with a Pose.
[SerializeField] private GameObject cube;
private void CreateCube(Entity entity)
{
if (entity.Flag == EntityFlag.EntityFlagParticipantEntity) return;

Instantiate(cube, entity.Pose.position, entity.Pose.rotation);
}

We first chack that the entity is not the special participant entity that is created automatically when a participant joins a session.

  1. Declare a Button variable to reference the button that will invoke CreateCubeEntity method.
[SerializeField] private Button spawnButton;

We want this button to be interactable only when the session state is calibrated. Add a ToggleControlsState method and invoke it in _conjureKit.OnStateChanged callback.

_conjureKit.OnStateChanged += state =>
{
sessionState.text = state.ToString();
ToggleControlsState(state == State.Calibrated);
};
  1. Create a primitive cube by selecting GameObject -> 3D Object -> Cube. Change the scale of the cube to 0.1 so it appears as a 10cm cube in AR. Drag and drop it into the Assets folder in the Project window to create a prefab and delete the cube from the scene. Drag the cube prefab to the field you declared in step 2.

  2. Add a Button to the scene, configure the on click callback to invoke CreateCubeEntity method. Drag the button game object to the field you declared in step 3.

If you run the project now you should see the cube in front of the camera. Instantiated cube

Instant calibration

Manna module makes it easy to join a session and get instantly calibrated into a shared coordinate system by scanning a Lighthouse (a QR code in this case). Follow these steps to install and use Manna:

  1. Open the Package Manager and install the Manna module. Install Manna and Vikja

    tip

    If you are experiencing issues with Unity editor when installing a new package, try restarting Unity.

  2. Import Manna

using Auki.ConjureKit.Manna;
  1. Create a private Manna variable and initialize it right after ConjureKit
private Manna _manna;
_manna = new Manna(_conjureKit);
  1. Declare a Button variable that will enable and disable the QR code and a bool variable to save the QR code visibility state.
[SerializeField] bool qrCodeBool;
[SerializeField] Button qrCodeButton;
  1. Toggle the QR code button interactable state in ToggleControlsState method.
private void ToggleControlsState(bool interactable)
{
if (spawnButton) spawnButton.interactable = interactable;
if (qrCodeButton) qrCodeButton.interactable = interactable;
}
  1. Add a ToggleLighthouse method and use _manna.SetLighthouseVisible(true) to show and hide the Lighthouse (QR code).
public void ToggleLighthouse()
{
qrCodeBool = !qrCodeBool;
_manna.SetLighthouseVisible(qrCodeBool);
}
  1. Add a Button to the scene, configure the on click callback to invoke ToggleLighthouse method. Drag the button game object to the field you declared in step 5.

  2. Subscribe to OnEntityAdded event to create cubes when other participants add entities in the session.

_conjureKit.OnEntityAdded += CreateCube;

Build to XCode

In File -> Build settings, make sure that you have added open scenes before building to Xcode.

Another Device B running the same app as Device A can now join Device A's Session by scanning the Lighthouse (QR code) of Device A.

Lighthouse QR

Complete code

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Auki.ConjureKit;
using UnityEngine.UI;
using Auki.ConjureKit.Manna;

public class ConjureKitManager : MonoBehaviour
{
private IConjureKit _conjureKit;
public Camera arCamera;

[SerializeField] private Text sessionState;
[SerializeField] private Text sessionID;

[SerializeField] private GameObject cube;
[SerializeField] private Button spawnButton;

private Manna _manna;

[SerializeField] bool qrCodeBool;
[SerializeField] Button qrCodeButton;

void Start()
{
_conjureKit = new ConjureKit(
ConjureKitConfiguration.Get(), arCamera.transform,
"YOUR_APP_KEY",
"YOUR_APP_SECRET");

_manna = new Manna(_conjureKit);

_conjureKit.OnStateChanged += state =>
{
sessionState.text = state.ToString();
ToggleControlsState(state == State.Calibrated);
};

_conjureKit.OnJoined += session =>
{
sessionID.text = session.Id.ToString();
};

_conjureKit.OnLeft += () =>
{
sessionID.text = "";
};

_conjureKit.OnEntityAdded += CreateCube;

_conjureKit.Connect();
}

private void ToggleControlsState(bool interactable)
{
if (spawnButton) spawnButton.interactable = interactable;
if (qrCodeButton) qrCodeButton.interactable = interactable;
}

public void ToggleLighthouse()
{
qrCodeBool = !qrCodeBool;
_manna.SetLighthouseVisible(qrCodeBool);

}

public void CreateCubeEntity()
{

if (_conjureKit.GetState() != State.Calibrated)
return;

Vector3 position = arCamera.transform.position + arCamera.transform.forward * 0.5f;
Quaternion rotation = Quaternion.Euler(0, arCamera.transform.eulerAngles.y, 0);

Pose entityPos = new Pose(position, rotation);

_conjureKit.AddEntity(
entityPos,
onComplete: entity => CreateCube(entity),
onError: error => Debug.Log(error));
}

private void CreateCube(Entity entity)
{
if (entity.Flag == EntityFlag.EntityFlagParticipantEntity) return;

Instantiate(cube, entity.Pose.position, entity.Pose.rotation);
}
}