Search Issue Tracker
Duplicate
Votes
0
Found in
5.0.0a18
Issue ID
623242
Regression
No
Compilation errors after automatic script update in Unity 5
ScriptUpdater converted
mapSphere.gameObject.SampleAnimation(mapSphere.animation.clip, (float)i);
to
mapSphere.animation.clip.SampleAnimation(mapSphere.gameObjectnimation>().clip, (float)i);
which doesn't compile because of "gameObjectnimation"
The correct line, as I converted it manually seems to be:
mapSphere.GetComponent<Animation>().clip.SampleAnimation(mapSphere.gameObject, (float)i);
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Animator state transition preview clips are flickering when zooming in
- [Tile Palette] Sprites not rendering when brush tool "Paint a filled box with active brush" is used for the first time
- Longer Shader Graph Property Reference names breaks VFX Graph Output Particle Node
- "DebugAllocatorMode" option changes when changed in another Editor instance
- UITK Debugger new Classes element is not created with no information or warnings thrown when adding more than one element with the default name
Add comment