Search Issue Tracker
Fixed
Fixed in 2023.2.6f1, 2023.3.0b3
Votes
0
Found in
2023.2.0b5
2023.3.0a3
Issue ID
UUM-45420
Regression
No
A typo in an error message when the repeat rate is too low in the "MonoBehaviour.bindings.cs" class
In line 69 of “MonoBehaviour.bindings.cs” source code ([https://github.com/Unity-Technologies/UnityCsReference/blob/master/Runtime/Export/Scripting/MonoBehaviour.bindings.cs|https://github.com/Unity-Technologies/UnityCsReference/blob/master/Runtime/Export/Scripting/MonoBehaviour.bindings.cs] ) is a typo in the error message under the “InvokeRepeating” method for when the repeat rate is too low.
Line in the code:
{{throw new UnityException("Invoke repeat rate has to be larger than 0.00001F)");}}
Should be:
{{throw new UnityException("Invoke repeat rate has to be larger than 0.00001F");}}
Reproducible with: 2023.2.0b5 (source code version)
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- 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
- Crash on mecanim::animation::TransformValuesFromClip when entering the Play Mode in a project with Animancer Pro v8
Add comment