Not signed in
Copyright © 2026 Unity Technologies
In line 69 of “MonoBehaviour.bindings.cs” source code (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)
Sign in to see your voted issues