Search Issue Tracker
By Design
Votes
0
Found in
2021.2.19f1
2021.3
2022.2.0a3
Issue ID
1422311
Regression
Yes
JavaScript file loaded as TextAsset using AssetDatabase.LoadAssetAtPath returns null
Reproduction steps:
1. Open the attached '1422311-sample' project
2. Open the 'SampleScene'
3. Enter Play mode
Expected result: No errors are in the Console
Actual result: 'NullReferenceException: Object reference not set to an instance of an object' is in the Console
Reproducible with: 2021.3.3f1, 2022.2.0a3, 2022.2.0a15
Not reproducible with: 2019.4.39f1, 2020.3.34f1, 2022.1.2f1, 2022.2.0a2
Reproducible on: macOS 11.6 (Intel)
Comments (1)
-
GabKBelmonte
May 25, 2022 15:25
JavaScripts are not text assets since they were dropped in 2017, there was legacy code that still treated them as such. (https://docs.unity3d.com/Manual/class-TextAsset.html)
By dropping that, we allow the flexibility of allowing users to load them as assets themselves, an
example here: https://forum.unity.com/threads/loading-a-file-with-a-custom-extension-as-a-textasset.625078/It will also allow future dev for support of Unity CloudCode.
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
- Mono Windows Builds don't produce full log callstacks when generating logs
- AssetBundles fail to load when running in Built Players for Mobile Devices
- UI elements with text gets bigger and grey when Player window is moved to another screen with different resolution
- System name accepts multiline text but crops it on confirmation, duplicates input, and shrinks the field when empty
- UI element scale and position are wrong in project build when DRS is changed with HDR and Software Dynamic Resolution enabled
Resolution Note:
JavaScript files are not TextAssets anymore, it was legacy code that has been lingering from the UnityScript days (removed in 2017). Workaround: https://forum.unity.com/threads/loading-a-file-with-a-custom-extension-as-a-textasset.625078/