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
- 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
Add comment