I'm making a Google Tango app using Unity. When saving an area description with AreaDescription.SaveCurrent()
I should be getting progress updates according to the docs:
While the save is running, TangoEvent notification callbacks are sent that describe the save progress. You can listen for these callbacks by implementing the ITangoEvent interface and listening to AreaDescriptionSaveProgress events.
However, I never get these progress updates during the save. All I get is an event for "100% done" when the save is finished, but I'm not getting any updates in-between (10% done, 17% done, etc).
I was thinking this might be because Tango does not bother on small saves, but I have the same problem even on saves that take several minutes.
Why am I not getting these updates, and what can I do to start getting them?