Search Issue Tracker
By Design
Votes
0
Found in
2018.3.0a5
2018.3.5f1
Issue ID
1125902
Regression
Yes
Decimal separator '.' is ignored when loading float value from xml file and system language is set to German
How to reproduce:
1. Set System Language to German
2. Open attached Unity project "1125902_bug"
3. Load "SampleScene" scene
4. Enter the Play mode
5. Select GameObject
6. Look at "A Float Value" in the Test component
Expected result: Float value is set to 75.5.
Actual result: Float value is set to 755, when float value in xml is 75.5.
Regression introduced in: 2018.3.0a5.
Reproduced with: 2019.2.0a10, 2019.1.0b9, 2018.3.11f1.
Not reproduced with: 2018.2.21f1, 2017.4.24f1.
Notes:
This issue is not reproducible on iOS.
When System Language is set to another language with ',' separator (For example, Lithuanian), an error pops up when loading value with "." separator. Also, "," separator is changed to ".".
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Resolution Note:
If you want to parse a number and use a decimal points '.' regardless of the system, application, or thread locale you need to specify to use the InvariantCulture:
float.Parse(numberString, CultureInfo.InvariantCulture);