Search Issue Tracker
Fixed
Fixed in 2.0.3
Votes
0
Found in [Package]
2.0.3
Issue ID
ADDR-3438
Regression
Yes
[Addressables] Timeout and RedirectLimit range limits are serialized incorrectly
Reproduction steps:
1. Open the “AddressablesStripped“ project
2. Open “Packages/Addressables/Editor/Settings/GroupSchemas/BundledAssetGroupSchema.cs”
3. Note that Timeout is limited to [0, short.MaxValue] and RedirectLimit is limited to [-1, 128]
4. Open “Packages/Addressables/Runtime/ResourceLocators/ContentCatalogData.cs”
5. Observe the serialization of Timeout and RedirectLimit
Expected result: Timeout is serialized to [0, short.MaxValue] and RedirectLimit is serialized to [-1, 128]
Actual result: Timeout is serialized to [short.MinValue, short.MaxValue] and RedirectLimit is serialized to [0, 128]
Reproduced in: 1.21.14 (2021.3.28f1, 2022.3.4f1, 2023.1.3f1, 2023.2.0a23)
Not reproduced in: 1.21.12 (2021.3.28f1, 2022.3.4f1, 2023.1.3f1, 2023.2.0a23) (range is not limited nor serialized)
Reproduced using: Windows 10, macOS 13.4.1 (Intel)
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Prefab override popup is cropped/positioned incorrectly when more than one display is used and a higher display Scale is set
- Opening a dropdown on a small screen results in its instant closing when mouse cursor is pressed where the dropdown is going to be opened
- Only "ArgumentNullException: Value cannot be null" is displayed instead of all the actual errors when opening a project with numerous compilation errors
- MultiColumnListView and MultiColumnTreeView do not change selection on first input when focus is set by code
- SerializedProperty.DataEquals is returning false when SerializedProperty.EqualContents return true
Add comment