I have a question about Vuforia for Unity.
Debug and Console says "2018-05-04 09: 01: 52.673445 + 0900 myapp [1035: 390058] INFO / AR (1035) 2018-05-05 09:01:52: Completed CloudReco transaction with ID 'ee7dccb4c6e84c84f3b8940ae9a8d33' You will see a message saying "
Which event is Fire this is?
I did not receive the Event of OnTrackableStateChanged of the Script that I attempted.
Does this mean you detected CloudReco Target?
Or is not it related?
public class CloudRecoTrackableEventHandler : MonoBehaviour, ITrackableEventHandler
{
#region PUBLIC_METHODS
/// <summary>
/// Implementation of the ITrackableEventHandler function called when the
/// tracking state changes.
/// </summary>
public void OnTrackableStateChanged(
TrackableBehaviour.Status previousStatus,
TrackableBehaviour.Status newStatus)
{
Debug.Log("Vuforia StatusChanged"+newStatus); // nothing output on Console when output [Completed CloudReco transaction with ID]
Best Regards.
I trace my logs.
First 'OnNewSearchResult( TargetFinder.TargetSearchResult targetSearchResult ) on CloudRecoEventHandler.cs Fired.
and can read targetSearchResult.MetaData.
Next OnTrackableStateChanged( TrackableBehavior.Status previewStatus, TrackableBehavior.Status newStatus ) on CloudRecoTrackableEventHandler.cs Fired.
but this newStatus is NOT_FOUND
many other target image is clearly to detect cloudReco.
When I try low level star target image. but I check in cloudreco usage. that target reco increasing many count.
thanks.