Invoked when a newly detected trackable has been localized.
When a new OVRAnchor has been detected and localized, a new GameObject with a MRUKTrackable is created to represent it. Its transform is set, and then this event is invoked.Subscribe to this event to add additional child GameObjects or further customize the behavior.This example shows how to create a MonoBehaviour that instantiates a custom prefab:
class MyCustomManager : MonoBehaviour
public GameObject Prefab;
publicvoid OnTrackableAdded(MRUKTrackable trackable)
Instantiate(Prefab, trackable.transform);