Search Issue Tracker
Third Party Issue
Third Party Issue in 2023.3.X
Votes
0
Found in
2021.3.31f1
2022.3.10f1
2023.1.16f1
2023.2.0b12
2023.3.0a8
Issue ID
UUM-52676
Regression
No
AssemblyReloadEvents.afterAssemblyReload can't be called
How to reproduce:
1. Open the user-attached project “UnityBugReport”
2. Open the “SampleScene” scene
3. In the upper menu click Platform → Test
4. Observe the Console
Expected result: Both “Before” and “After” events are logged into the Console
Actual result: Only the “Before” event is logged
Reproducible with: 2021.3.31f1, 2022.3.10f1, 2023.1.16f1, 2023.2.0b12, 2023.3.0a8
Reproducible on: Windows 11 Pro
Not reproducible on: No other environment tested
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
- Polyspatial Material swap set animations are not firing when used in Play Mode and Players
- Incomplete shortcuts are displayed in the "Set" dropdown in Visual Effects Graph VFX Control subwindow
- Version change sub-window closes automatically when "Add Modules" subwindow is closed
- RenderTexture content from 'Depth Only' camera is not rendered correctly on UI RawImage when Multithreaded Rendering is enabled on specific MediaTek devices.
- Weight Brush Overlay text is clipped in Sprite Editor
Resolution Note:
When assembly reload is invoked, all bindings get reset in code, so afterAssemblyReload is already empty at that time. To get that script working you could use InitializeOnLoadMethod for ensuring bindings are setup at proper time.
Resolution Note (2023.3.X):
When assembly reload is invoked, all bindings get reset in code, so afterAssemblyReload is already empty at that time. To get that script working you could use InitializeOnLoadMethod for ensuring bindings are setup at proper time.