1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //using System.Collections;
- //using System.Collections.Generic;
- //using UnityEngine;
- //public class VuforialFindImageAction : DefaultTrackableEventHandler
- //{
- // public string Name;
- // public Transform targetObj;
-
- // public int num;
- // public int pointObj;
- // public ShowObj showObj;
- // public int MapShowPoint;
-
- // protected override void OnTrackingFound()
- // {
- // if(targetObj == null)
- // {
- // Debug.Log(" targetObj is NULL ////////////////");
- // }
- // VuforialControl.Instance.TrackingFound(targetObj, num, pointObj);
-
- // //if (VuforialMap.Instance != null)
- // // VuforialMap.Instance.TargetPointShow(this);
- // base.OnTrackingFound();
- // }
- // protected override void OnTrackingLost()
- // {
- // VuforialControl.Instance.TrackingLost(num);
-
- // //if (VuforialMap.Instance != null)
- // // VuforialMap.Instance.TargetPointClose(this);
- // base.OnTrackingLost();
- // }
- //}
- //public enum ShowObj
- //{
- // ScenicSpot = 0,
- // Rotue = 1,
- // obj3D = 2
- //}
|