Search Issue Tracker
Fixed in 5.0.X
Votes
0
Found in
5.0.0a16
Issue ID
619454
Regression
No
ScriptUpdater fails with compilationException error
Could not start compilationException: Failed running ScriptUpdater.exe its output is:stdout:
[Script Updater] Assets/Scripts/Engine/BuildCharacters.cs (73, 16) Could not find the best candidate for 'Characters.Where(?)' expression (Error: ArgumentTypeMismatch, AmbiguousMatch). This may cause expected updates to not be applied.
[Script Updater] Assets/Scripts/Engine/BuildScenes.cs (113, 16) Could not find the best candidate for 'Scenes.Where(?)' expression (Error: ArgumentTypeMismatch, AmbiguousMatch). This may cause expected updates to not be applied.
The kind of code it fails to update is similar to
return Characters.Where(x => x.Episode == episode).ToArray();
where Characters is defined as:
public static Character[] Characters{ get { return _characters; } }
private static Character[] _characters =
{
new Character("Hulk", Combatant.eCombatantType.Hulk, Episode.Hulk),
new Character("Abomination", Combatant.eCombatantType.Abomination, Episode.Hulk)}
Attached Editor.log file might have more info. If you need the project (very big), you can get it from \\HOMES\qa\BigProjectsImporting\AvengersAssemble_4.3.zip
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Editor freezes briefly when "multi-selecting" TextMeshPro GameObjects In the Hierarchy window in Prefab Mode, if 5 or more Inspector windows are open
- OnEndDrag event not triggered when losing Editor focus during simultaneous Left and Right mouse drag
- 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
Add comment