{"record":{"id":"060047538ba97107","repo":"Unity-Technologies/UnityCsReference","slug":"playersettings-storelargetile180-is-deprecated-us","errorCode":null,"errorMessage":"PlayerSettings.storeLargeTile180 is deprecated. Use GetVisualAssetsImage() instead.","messagePattern":"PlayerSettings\\.storeLargeTile180 is deprecated\\. Use GetVisualAssetsImage\\(\\) instead\\.","errorType":"exception","errorClass":"NotSupportedException","httpStatus":null,"severity":"error","filePath":"Editor/Mono/PlayerSettingsWSA.cs","lineNumber":443,"sourceCode":"            public static string storeLargeTile140\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile140 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile140 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 storeLargeTile180\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile180 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile180 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 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.\");","sourceCodeStart":425,"sourceCodeEnd":461,"githubUrl":"https://github.com/Unity-Technologies/UnityCsReference/blob/225b0fbdb57cc17d094e8056b71f8314aba56f73/Editor/Mono/PlayerSettingsWSA.cs#L425-L461","documentation":"PlayerSettings.WSA.storeLargeTile180 is a deprecated static property getter that always throws NotSupportedException. The 180% scale large-tile image property was superseded by GetVisualAssetsImage(WSAImageType, WSAImageScale). It is [Obsolete(..., true)] and [EditorBrowsable(Never)].","triggerScenarios":"Reading PlayerSettings.WSA.storeLargeTile180 (the getter) in editor scripts, build reports, or configuration inspectors. Compile-time for direct access; runtime via reflection.","commonSituations":"Porting Windows 8.1 store app configuration to UWP; legacy build scripts that read multi-scale tile paths; upgrading Unity and finding stale property references in plugins.","solutions":["Replace with PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPSquare150x150Logo, WSAImageScale._200) — the 180% legacy scale maps closest to UWP _200.","Search for and migrate all storeLargeTile180 references.","Update or replace plugin DLLs referencing the deprecated member."],"exampleFix":"// before\nstring path = PlayerSettings.WSA.storeLargeTile180;\n\n// after\nstring path = PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPSquare150x150Logo, WSAImageScale._200);","handlingStrategy":"type-guard","validationCode":"// Use the new getter for ~180% scale\nstring path = PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPSquare150x150Logo, WSAImageScale._200);","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 the legacy 180% scale to WSAImageScale._200 when migrating.","Audit reflection-based property enumeration to skip deprecated members.","Search for 'storeLargeTile180' after Unity version upgrades."],"tags":["unity","uwp","wsa","deprecation","player-settings","visual-assets"],"backgroundTag":null,"analyzedSha":"225b0fbdb57cc17d094e8056b71f8314aba56f73","analyzedAt":"2026-08-13T19:07:19.849Z","schemaVersion":2},"datasetVersion":"2026-08-13T19:17:28.613Z"}