Esempio n. 1
0
    public void photographFish(Progress.Fish fish)
    {
        _progress.photographFish(fish, false);
        _tempPhotos.Add(fish);

        // TELEMETRY
        EventTracker.GetInstance().RegisterPhotoEvent(fish);
    }
Esempio n. 2
0
 public PhotoEvent(Progress.Fish fType)
 {
     fishType  = fType;
     type      = EventType.PHOTO;
     timeStamp = (int)(Time.time * 1000);
 }
Esempio n. 3
0
    public void RegisterPhotoEvent(Progress.Fish fType)
    {
        PhotoEvent ev = new PhotoEvent(fType);

        TrackEvent(ev);
    }