Search Issue Tracker
By Design
Votes
0
Found in
2021.2
2021.2.13f1
2021.3
2022.1
2022.2
Issue ID
1407312
Regression
No
Scripts within Assembly Defintions are missing when used by scenes in Asset Bundles and when the Project is built using IL2CPP
Reproduction steps:
1. Open users attached project
2. Press Tools > Build App
3. Open the built project in <Project folder>/Builds/Test
Expected result: No errors in the Player
Actual result: "The referenced script on this Behaviour is missing!" errors are thrown
Reproducible with: 2021.2.19f1, 2021.3.0f1, 2022.1.0b15, 2022.2.0a9
Could not test with: 2019.4.37f1 (could not downgrade the project), 2020.3.33f1 (ArgumentException: Unhandled ManagedStrippingLevel value of 4)
Notes:
-only reproducible with IL2CPP scripting backend
-on windows, you might need to rename <Project folder>/Builds/Test to <Project folder>/Builds/Test.exe
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
- Crash on GUIManager::DoGUIEvent when focusing on the Game view window on a specific project
- Asset creation in the Project Browser is not always undone/inconsistent when the undo shortcut is pressed right after creating an asset
- JobTempAlloc memory leak warning is thrown when the Player is shut down
- Graphics State Collection warm-up does not work when using with Addressables Shaders
- "Baked Shadow Radius" field is visible but inactive when when the Shadow Type is set to "Hard Shadows" under the Light Component
Resolution Note (2022.2.X):
On IL2CPP builds managed code stripping is enabled - https://docs.unity3d.com/Manual/ManagedCodeStripping.html - and is removing these scripts since they are in a package and nothing in the build is referencing them. To prevent this from happening please use the BuildPlayer overload that takes a BuildPlayerOptions object and set the assetBundleManifestPath to the path to your StreamingAssets.manifest file - https://docs.unity3d.com/ScriptReference/BuildPlayerOptions-assetBundleManifestPath.html. This ensure that all of the scripts referenced in the streaming assets are found.