{"record":{"id":"6d54ea53582ca9f8","repo":"Unity-Technologies/UnityCsReference","slug":"playersettings-storesplashscreenimagescale140-is-d","errorCode":null,"errorMessage":"PlayerSettings.storeSplashScreenImageScale140 is deprecated. Use GetVisualAssetsImage() instead.","messagePattern":"PlayerSettings\\.storeSplashScreenImageScale140 is deprecated\\. Use GetVisualAssetsImage\\(\\) instead\\.","errorType":"exception","errorClass":"NotSupportedException","httpStatus":null,"severity":"error","filePath":"Editor/Mono/PlayerSettingsWSA.cs","lineNumber":471,"sourceCode":"            public static string storeSplashScreenImage\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeSplashScreenImage is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeSplashScreenImage is deprecated. Use SetVisualAssetsImage() instead.\");\n                }\n            }\n\n            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]\n            [Obsolete(\"Use GetVisualAssetsImage()/SetVisualAssetsImage()\", true)]\n            public static string storeSplashScreenImageScale140\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeSplashScreenImageScale140 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeSplashScreenImageScale140 is deprecated. Use SetVisualAssetsImage() instead.\");\n                }\n            }\n\n            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]\n            [Obsolete(\"Use GetVisualAssetsImage()/SetVisualAssetsImage()\", true)]\n            public static string storeSplashScreenImageScale180\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeSplashScreenImageScale180 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeSplashScreenImageScale180 is deprecated. Use SetVisualAssetsImage() instead.\");","sourceCodeStart":453,"sourceCodeEnd":489,"githubUrl":"https://github.com/Unity-Technologies/UnityCsReference/blob/225b0fbdb57cc17d094e8056b71f8314aba56f73/Editor/Mono/PlayerSettingsWSA.cs#L453-L489","documentation":"PlayerSettings.WSA.storeSplashScreenImageScale140 is a deprecated static property getter that always throws NotSupportedException. The 140% scale splash screen image was superseded by GetVisualAssetsImage(WSAImageType, WSAImageScale) with type WSAImageType.SplashScreenImage. It is [Obsolete(..., true)] and [EditorBrowsable(Never)].","triggerScenarios":"Reading PlayerSettings.WSA.storeSplashScreenImageScale140 (the getter) in editor tooling, build reports, or serialization paths. Compile-time failure for direct access; runtime via reflection.","commonSituations":"Porting a Windows 8.1-era splash screen configuration to UWP; plugins that read multi-scale splash screen paths; upgrading Unity with stale references in third-party code.","solutions":["Replace with PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.SplashScreenImage, WSAImageScale._150) — the 140% legacy scale maps closest to UWP _150.","Search for and migrate all storeSplashScreenImageScale140 references.","Update or replace plugin DLLs referencing the deprecated member."],"exampleFix":"// before\nstring path = PlayerSettings.WSA.storeSplashScreenImageScale140;\n\n// after\nstring path = PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.SplashScreenImage, WSAImageScale._150);","handlingStrategy":"type-guard","validationCode":"// Use the new getter for splash screen at ~140% scale\nstring path = PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.SplashScreenImage, WSAImageScale._150);","typeGuard":"static bool IsDeprecatedWsaProperty(string name) =>\n    typeof(PlayerSettings.WSA)\n        .GetProperty(name,\n            System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Static)\n        ?.GetCustomAttribute<ObsoleteAttribute>()?.IsError == true;","tryCatchPattern":null,"preventionTips":["Map legacy 140% splash screen scale to WSAImageScale._150.","Skip [Obsolete(IsError=true)] members during reflection-based property access.","Grep for 'storeSplashScreenImageScale140' after upgrades."],"tags":["unity","uwp","wsa","deprecation","player-settings","splash-screen"],"backgroundTag":null,"analyzedSha":"225b0fbdb57cc17d094e8056b71f8314aba56f73","analyzedAt":"2026-08-13T19:07:19.849Z","schemaVersion":2},"datasetVersion":"2026-08-13T19:17:28.613Z"}