Search Issue Tracker
Won't Fix
Votes
1
Found in
2018.4
2020.2
Issue ID
1235386
Regression
No
UI Image doesn't appear in the Player when using a specific project
How to reproduce:
1. Open the uploaded project's Scene labeled "MainScene"
2. Enter the Play Mode
3. In the Game View, use the scroll wheel to change the weapon UI
4. Observe the behavior
5. Go to File->Build Settings
6. In the Build Settings Window, press the "Build And Run" button
7. In the Build, use the scroll wheel
8. Observe the behavior
Expected result: UI appears in the bottom-left corner when the weapon is switched
Actual result: UI doesn't appear for the switched weapon
Reproducible with: 2018.4.21f1, 2019.3.10f1, 2020.1.0b5, 2020.1.0a7
Couldn't test with: 2017.4.39f1 (Errors are thrown)
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
- Files in the target folder are deleted without a proper warning when building an iOS project
- Character animation freezes when toggling animator on/off in a coroutine
- Certain textures are incorrectly marked in the render pass list when observed through Render Graph Viewer
- "Assertion failed on expression" error occurs when multiple Animation Components are instantiated after changing the Culling Type
- MacOS persistentDataPath uses old path when built compared to Editor Play mode
Resolution Note (2020.2.X):
Seems to be caused by order in which WeaponHUDManager and PlayerWeaponsManager are executed. Making WeaponHUDManager run first in script execution order settings fixes issue in player too.
PlayerWeaponsManager in Start() calls AddWeapon() method which instantiates weapons and invokes onAddedWeapon UnityAction.
Meanwhile, WeaponHUDManager in Start() registers its method responsible for UI to onAddedWeapon action. So if Start() in PlayerWeaponsManager is executed first, HUD’s UI method is not registered yet and so UI doesn’t get created.