Search Issue Tracker
By Design
Votes
0
Found in
5.6.1p3
Issue ID
927279
Regression
No
WebCamTexture.didUpdateThisFrame is set after the WebCamTexture is rendered
Updating didUpdateThisFrame property in LateUpdate() makes sense for MovieTexture because it's an output but WebCamTexture (which came later) needs to update before the Update() because it's an Input.
Steps to reproduce:
1. Open attached project
2. Build and run for android
3. Inspect the green and red +/- symbols (green symbol stands for Update() and red for lateUpdate())
Result: didUpdateThisFrame is set after the webCamTexture is rendered.
Expected result: didUpdateThisFrame should be set before the webCamTexture is rendered.
Reproduced with: 5.6.1p3, 2017.1.0f2, 2017.2.0b2
Devices under test:
Reproduced with:
Sony D6503, OS:6.0.1, CPU:armeabi-v7a, GPU:Adreno (TM) 330, Build:Sony/D6503/D6503:6.0.1/23.5.A.1.291/2769308465:user/release-keys
Xiaomi MI 5s, OS:6.0.1, CPU:arm64-v8a, GPU:Adreno (TM) 530, Build:Xiaomi/capricorn/capricorn:6.0.1/MXB48T/V8.0.10.0.MAGCNDH:user/release-keys
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
- “Client And Server” shown without spaces in Active Scenario window
- [Linux] Mouse cursor gets stuck at the edge of the screen when trying to pan in the Scene view
- Docked Multiplayer Play Mode window disappears when switching back to a saved Editor layout
- Audio files fail to be imported when the file path is 260 characters or longer
- Error SGICE002 is wrongly shown when more than one argument is passed into GetComponentRW()
Resolution Note:
By Design. Changing the order of evaluation to get the flag earlier would break compatibility with existing apps, that expect the current behavior.