{"record":{"id":"da13af9426c3af21","repo":"Unity-Technologies/UnityCsReference","slug":"playersettings-storelargetile140-is-deprecated-us","errorCode":null,"errorMessage":"PlayerSettings.storeLargeTile140 is deprecated. Use GetVisualAssetsImage() instead.","messagePattern":"PlayerSettings\\.storeLargeTile140 is deprecated\\. Use GetVisualAssetsImage\\(\\) instead\\.","errorType":"exception","errorClass":"NotSupportedException","httpStatus":null,"severity":"error","filePath":"Editor/Mono/PlayerSettingsWSA.cs","lineNumber":429,"sourceCode":"            public static string storeLargeTile\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile 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 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.\");","sourceCodeStart":411,"sourceCodeEnd":447,"githubUrl":"https://github.com/Unity-Technologies/UnityCsReference/blob/225b0fbdb57cc17d094e8056b71f8314aba56f73/Editor/Mono/PlayerSettingsWSA.cs#L411-L447","documentation":"PlayerSettings.WSA.storeLargeTile140 is a deprecated static property getter that always throws NotSupportedException. The 140% scale variant of the large tile image was replaced by GetVisualAssetsImage(WSAImageType, WSAImageScale). It is [Obsolete(..., true)] and [EditorBrowsable(Never)].","triggerScenarios":"Reading PlayerSettings.WSA.storeLargeTile140 (the getter) — typically in build-report or configuration-reading scripts. Direct calls fail to compile; runtime hits come from reflection.","commonSituations":"Upgrading from a Windows 8.1-era Unity project; plugins that enumerate or read WSA image properties; editor scripts that display the current tile configuration.","solutions":["Replace with PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPSquare150x150Logo, WSAImageScale._150) — the 140% legacy scale maps closest to the UWP _150 scale.","Audit and migrate all storeLargeTile140 references project-wide.","Update any plugin DLLs that reference this member."],"exampleFix":"// before\nstring path = PlayerSettings.WSA.storeLargeTile140;\n\n// after\nstring path = PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPSquare150x150Logo, WSAImageScale._150);","handlingStrategy":"type-guard","validationCode":"// Use the new getter for ~140% scale\nstring path = PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPSquare150x150Logo, 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 the legacy 140% scale to WSAImageScale._150 when migrating.","Filter [Obsolete(..., true)] members when doing reflection on PlayerSettings.WSA.","Search for 'storeLargeTile140' across the project after each Unity upgrade."],"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"}