{"record":{"id":"e8f9f86dab0e012f","repo":"Unity-Technologies/UnityCsReference","slug":"playersettings-storelargetile-is-deprecated-use-s","errorCode":null,"errorMessage":"PlayerSettings.storeLargeTile is deprecated. Use SetVisualAssetsImage() instead.","messagePattern":"PlayerSettings\\.storeLargeTile is deprecated\\. Use SetVisualAssetsImage\\(\\) instead\\.","errorType":"exception","errorClass":"NotSupportedException","httpStatus":null,"severity":"error","filePath":"Editor/Mono/PlayerSettingsWSA.cs","lineNumber":419,"sourceCode":"                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile80 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeLargeTile80 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 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)]","sourceCodeStart":401,"sourceCodeEnd":437,"githubUrl":"https://github.com/Unity-Technologies/UnityCsReference/blob/225b0fbdb57cc17d094e8056b71f8314aba56f73/Editor/Mono/PlayerSettingsWSA.cs#L401-L437","documentation":"PlayerSettings.WSA.storeLargeTile is a deprecated static property setter that always throws NotSupportedException. The base-scale (100%) large tile image setter was superseded by SetVisualAssetsImage(string, WSAImageType, WSAImageScale). Marked [Obsolete(..., true)] and [EditorBrowsable(Never)].","triggerScenarios":"Assigning to PlayerSettings.WSA.storeLargeTile (the setter) in editor scripts or build automation. Hit most often via reflection-based serialization or code targeting an older Unity API.","commonSituations":"Migrating a UWP build pipeline from Unity 5.x/2017 to a newer version; CI scripts that set tile images; third-party packages with stale references.","solutions":["Replace with PlayerSettings.WSA.SetVisualAssetsImage(path, WSAImageType.UWPSquare150x150Logo, WSAImageScale._100).","Migrate all storeLargeTile* variants (base, 80, 140, 180) at the same time.","Replace or update plugins that still reference the deprecated setter."],"exampleFix":"// before\nPlayerSettings.WSA.storeLargeTile = \"Assets/Icons/largeTile.png\";\n\n// after\nPlayerSettings.WSA.SetVisualAssetsImage(\"Assets/Icons/largeTile.png\", WSAImageType.UWPSquare150x150Logo, WSAImageScale._100);","handlingStrategy":"type-guard","validationCode":"// Use the new setter API for base scale\nPlayerSettings.WSA.SetVisualAssetsImage(path, WSAImageType.UWPSquare150x150Logo, WSAImageScale._100);","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 storeLargeTile assignments with SetVisualAssetsImage.","Maintain a migration mapping table for all deprecated WSA properties when upgrading Unity.","Pin plugin versions to those compatible with the target Unity version."],"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"}