Version: 271.2.0

This commit is contained in:
PJB3005
2026-01-25 19:11:54 +01:00
parent 51397ba319
commit 0b93a1b7e2
2 changed files with 20 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
<Project>
<!-- This file automatically reset by Tools/version.py -->
<!-- This file automatically reset by Tools/version.py -->

View File

@@ -39,10 +39,7 @@ END TEMPLATE-->
### New features
* `IRobustSerializer` can now be configured to remove float NaN values when reading.
* This is intended to blanket block cheat clients from sending NaN values in input commands they shouldn't.
* To enable, set `IRobustSerializer.FloatFlags` from your content entrypoint.
* If you do really want to send NaN values while using the above, you can use the new `UnsafeFloat`, `UnsafeHalf`, and `UnsafeDouble` types to indicate a field that is exempt.
*None yet*
### Bugfixes
@@ -50,6 +47,24 @@ END TEMPLATE-->
### Other
*None yet*
### Internal
*None yet*
## 271.2.0
### New features
* `IRobustSerializer` can now be configured to remove float NaN values when reading.
* This is intended to blanket block cheat clients from sending NaN values in input commands they shouldn't.
* To enable, set `IRobustSerializer.FloatFlags` from your content entrypoint.
* If you do really want to send NaN values while using the above, you can use the new `UnsafeFloat`, `UnsafeHalf`, and `UnsafeDouble` types to indicate a field that is exempt.
### Other
* Improved some debug asserts related to contacts.
### Internal