Search Issue Tracker
By Design
Votes
0
Found in [Package]
1.7.3
1.7.6
Issue ID
UVSB-1661
Regression
No
Visual Scripting "AotStubs.cs" Script is not generated when building for iOS/WebGL in batch mode
Reproduction steps:
1. Download the "1077231_MyProject.zip" project
2. Build the project using the 'Builder.MyBuild' method via command line (\{EDITOR_PATH} -projectPath \{PROJECT_PATH} -batchmode -executeMethod Builder.MyBuild -quit)
3. Wait till it's finished and inspect the project's Assets folder
Expected result: "Unity.VisualScripting.Generated" folder was generated and the "AotStubs" Script can be found inside
Actual result: "Unity.VisualScripting.Generated" folder was not generated
Reproducible with: 1.7.3 (2021.1.15f1, 2021.2.0b4, 2022.1.0a4)
Could not test with: below 2021.1 (Visual Scripting not supported)
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:
from @yuri
The AotStubs files are created during the build process and deleted afterward. But only if the Visual Scripting is initialized.
It is possible to check if VS is initialized by looking for the folder "Unity.VisualScripting.Generated".
If you have VS initialized, a scene with a gameobject that has a graph attached, you should be able to build a working project on batch mode using the latest Visual Scripting version.
Use the attach project to run your tests.WorkingProject.zip