Living pictures in Augmented Reality (Unity AR Tutorial)

▶ Support me on patreon : ▶ Join the Valem discord channel : Give life to your pictures with this quick Augmented Reality tutorial ! ------------- Download Unity---------------- ---------- Add The TrackableEvent Script-------------- using ; using ; using UnityEngine; using ; public class TrackableEvent : DefaultTrackableEventHandler { public UnityEvent onTrackingFound; public UnityEvent onTrackingLost; protected override void OnTrackingFound() { (); (); } protected override void OnTrackingLost() { (); (); } }
Back to Top