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
- Texture displays visual artifacts and has a broken aspect ratio when it is imported in RGB 48-bit format
- Diagnostic Warning Resets When Navigating Away and Returning to Diagnostics Settings
- Checkbox Collides with Text in Shader Graph Preferences Settings
- Crash on mecanim::animation::TransformValuesFromClip when entering the Play Mode in a project with Animancer Pro v8
- Connection to Named Pipes fails when server and client are run
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/