private void SetScale(object sender, Pose pose)
 {
     markerHolder.localScale = Vector3.one * lastMessage.PhysicalSideLength;
     markerDisplay.SetActive(true);
     PositionSet?.Invoke(this, pose);
     audioSource.Play();
 }
Example #2
0
 private void SetScale(object sender, Pose pose)
 {
     PositionSet?.Invoke(this, pose);
 }
Example #3
0
 protected virtual void RaiseProgressSetEvent(object sender, ProgressEventArgs e) =>
 InvokeActionOnMainThread(() => PositionSet?.Invoke(sender, e));