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
- Required SpriteMask class (ID 331) is stripped when "Strip Engine Code" is enabled
- “Maximized serialized file backup not found” error is thrown when minimizing a window in a newly opened project
- Build stack trace contains invalid lines when building with IL2CPP using scripts with delegates containing generic types in the signature
- Entities Systems window has a “Show Full Player Loop” dropdown which does nothing when clicked after enabling “Show Full Player Loop”
- Entities Hierarchy Search “Show/Hide” button’s Lens Icon is blurry when the Editor is on an external monitor
Add comment