{"record":{"id":"1961e1f62c0c3832","repo":"Unity-Technologies/UnityCsReference","slug":"playersettings-storelargetile180-is-deprecated-us-1961e1","errorCode":null,"errorMessage":"PlayerSettings.storeLargeTile180 is deprecated. Use SetVisualAssetsImage() instead.","messagePattern":"PlayerSettings\\.storeLargeTile180 is deprecated\\. Use SetVisualAssetsImage\\(\\) instead\\.","errorType":"exception","errorClass":"NotSupportedException","httpStatus":null,"severity":"error","filePath":"Editor/Mono/PlayerSettingsWSA.cs","lineNumber":447,"sourceCode":"                    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.\");\n                }\n            }\n\n            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]","sourceCodeStart":429,"sourceCodeEnd":465,"githubUrl":"https://github.com/Unity-Technologies/UnityCsReference/blob/225b0fbdb57cc17d094e8056b71f8314aba56f73/Editor/Mono/PlayerSettingsWSA.cs#L429-L465","documentation":"PlayerSettings.WSA.storeLargeTile180 is a deprecated static property setter that always throws NotSupportedException. The 180% scale large-tile image assignment was replaced by SetVisualAssetsImage(string, WSAImageType, WSAImageScale). It is [Obsolete(..., true)] and [EditorBrowsable(Never)].","triggerScenarios":"Assigning to PlayerSettings.WSA.storeLargeTile180 (the setter) in editor automation, build scripts, or post-processing hooks. Typically reached via reflection-based code or code compiled against a deprecated API surface.","commonSituations":"Upgrading a project from Unity 5.x/2017 to a modern version; CI pipelines that configure WSA tile assets; third-party editor extensions referencing old property names.","solutions":["Replace with PlayerSettings.WSA.SetVisualAssetsImage(path, WSAImageType.UWPSquare150x150Logo, WSAImageScale._200).","Migrate all storeLargeTile* variants at once to prevent mixed old/new API usage.","Replace stale plugin DLLs with updated versions."],"exampleFix":"// before\nPlayerSettings.WSA.storeLargeTile180 = \"Assets/Icons/largeTile180.png\";\n\n// after\nPlayerSettings.WSA.SetVisualAssetsImage(\"Assets/Icons/largeTile180.png\", WSAImageType.UWPSquare150x150Logo, WSAImageScale._200);","handlingStrategy":"type-guard","validationCode":"// Use the new setter for ~180% scale\nPlayerSettings.WSA.SetVisualAssetsImage(path, 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":["Replace storeLargeTile180 assignments with SetVisualAssetsImage using WSAImageScale._200.","Grep for 'storeLargeTile180' across project and imported packages after upgrades.","Avoid reflection-based access to deprecated properties without an [Obsolete] filter."],"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"}