Search Issue Tracker
Won't Fix
Votes
0
Found in
2018.4
2019.4.10f1
2021.1
Issue ID
1279292
Regression
No
Lack of WSAPlayerARM64 enum
How to reproduce:
1. Open the attached "Delete_UWP_ARM64.zip" project
2. Switch to UWP
3. Observe the error in Console Window
Expected result: WSAPlayerARM64 enum is supported and no errors appear
Actual result: "'RuntimePlatform' does not contain a definition for 'WSAPlayerARM64'" error appears
Reproducible with: 2018.4.27f1, 2019.4.13f1, 2020.1.10f1, 2020.2.0b6, 2021.1.0a2
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
- var VisionOSEDRHeadromm has a comma instead of a dot when building with Metal Rendering App Mode and local OS localization is set to German
- IAP Catalog remove product “x” and add product “+” buttons are not consistent with other remove and add buttons in the Editor
- Performance issues in Play Mode when quickly hovering the mouse cursor over Hierarchy GameObjects
- Frame Debugger displays incorrect output when FidelityFX Super Resolution or Spatial-Temporal Upscaler is used with Temporal Anti-aliasing or Subpixel Morphological Anti-aliasing
- Crash with “Fatal Error! The file ‘MemoryStream’ is corrupted!” when adding a large number in Font Character Rects Size field
Resolution Note:
Changing it at this point would be a breaking change, since ARM64 builds returned WSAPlayerARM for a couple years now. You can detect that you're running on ARM64 using this simple check:
if (Application.platform == RuntimePlatform.WSAPlayerARM && IntPtr.Size == 8)
{
// We're on ARM64!
}