Search Issue Tracker
Postponed means that the issue was either a feature request or something that requires major refactoring on our side. Since that makes the issue not actionable in the close future we choose to close it as Postponed and add it on our internal roadmaps and technical debt pages instead.
Postponed
Fixed in 2017.4.X
Votes
3
Found in
2017.1.1f1
Issue ID
959858
Regression
No
Animated Procedural Textures break async level loading
how to reproduce:
build player (any platform will do) and run. To repro in editor open loader scene and play.
you can tweak TestLoad.cs to load Test_Simple scene instead to see that it will work just fine
original bug was happening because ios does async level load for "first scene" (thats different from all other platforms)
and due to the way we manage splash screen it resulted in black screen (faded-out splash screen rendering)
Expected fix in plugin from Allegorithmic.
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Thermos
Nov 30, 2017 02:54
Not only level async loading is effected, all AsyncOpertion would be blocked if this bug happens, including Resources.LoadAsync()(I'm pretty sure about this one).
If you refocus unity, or simply call Resources.Load(), all those hanging async opertions would be finished at once, but you can't do Resources.Load() every update as a workaround because Resources.Load() takes much much much much more time(0.01ms -> 80ms) than it usually would cost if this bug is happening.