Search Issue Tracker
By Design
Votes
0
Found in
5.5.0f3
Issue ID
873652
Regression
Yes
[iOS] Audio stops playing when app enters Background (with NatCam plugin)
Steps to reproduce:
1. Open User's attached project (Google Drive link)
2. Build and Run for iOS
3. On iOS device press home key (put app into background)
4. Launch app from the background
Expected behavior: Sound from the app continues to loop
Actual result: No sound from app after coming back from the background
Reproduced with: 5.6.0b8, 5.5.1p4.
Not reproduced with: 5.5.1f1.
Note: User is using NatCam Professional - WebCam API tool from the Asset Store.
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
PavelLU
Apr 28, 2017 12:19
There is simple fix to the issue: Put NatCam on pause when application loses focus.
void OnApplicationFocus(bool hasFocus)
{
if (hasFocus) NatCam.Play();
else NatCam.Pause();
}