Unity-Technologies/UnityCsReference · error · NotSupportedException

PlayerSettings.storeTileWideLogo80 is deprecated. Use GetVis

Error message

PlayerSettings.storeTileWideLogo80 is deprecated. Use GetVisualAssetsImage() instead.

What it means

Reading PlayerSettings.WSA.storeTileWideLogo80 throws NotSupportedException directing you to GetVisualAssetsImage(). The property is [Obsolete("Use GetVisualAssetsImage()/SetVisualAssetsImage()", true)] and EditorBrowsable(Never); source references are compile-time errors (CS0619) and the throw is reachable only via reflection, dynamic, or a pre-compiled assembly. storeTileWideLogo80 was the 80-scale wide tile logo; the replacement is GetVisualAssetsImage with WSAImageType.UWPWide310x150Logo and the matching scale.

Source

Thrown at Editor/Mono/PlayerSettingsWSA.cs:233

            public static string storeTileLogo180
            {
                get
                {
                    throw new NotSupportedException("PlayerSettings.storeTileLogo180 is deprecated. Use GetVisualAssetsImage() instead.");
                }
                set
                {
                    throw new NotSupportedException("PlayerSettings.storeTileLogo180 is deprecated. Use SetVisualAssetsImage() instead.");
                }
            }

            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
            [Obsolete("Use GetVisualAssetsImage()/SetVisualAssetsImage()", true)]
            public static string storeTileWideLogo80
            {
                get
                {
                    throw new NotSupportedException("PlayerSettings.storeTileWideLogo80 is deprecated. Use GetVisualAssetsImage() instead.");
                }
                set
                {
                    throw new NotSupportedException("PlayerSettings.storeTileWideLogo80 is deprecated. Use SetVisualAssetsImage() instead.");
                }
            }

            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
            [Obsolete("Use GetVisualAssetsImage()/SetVisualAssetsImage()", true)]
            public static string storeTileWideLogo
            {
                get
                {
                    throw new NotSupportedException("PlayerSettings.storeTileWideLogo is deprecated. Use GetVisualAssetsImage() instead.");
                }
                set
                {
                    throw new NotSupportedException("PlayerSettings.storeTileWideLogo is deprecated. Use SetVisualAssetsImage() instead.");

View on GitHub (pinned to 225b0fbdb5)

Solutions

  1. Recompile the calling assembly against the current editor to expose CS0619, then migrate.
  2. Replace with PlayerSettings.WSA.GetVisualAssetsImage(WSAImageType.UWPWide310x150Logo, <WSAImageScale>).
  3. Remove storeTileWideLogo80 from reflective read loops; it is EditorBrowsableState.Never.
  4. Version-gate unavoidable reflective access.

Example fix

// before
string logo = PlayerSettings.WSA.storeTileWideLogo80;

// after
string logo = PlayerSettings.WSA.GetVisualAssetsImage(
    WSAImageType.UWPWide310x150Logo, WSAImageScale._100);
Defensive patterns

Strategy: fallback

Validate before calling

static bool IsDeprecatedStoreTile(System.Reflection.PropertyInfo p)
    => p.GetCustomAttributes(typeof(System.ObsoleteAttribute), false)
         .Cast<System.ObsoleteAttribute>().Any(o => o.IsError);

Try / catch

try { _ = PlayerSettings.WSA.storeTileWideLogo80; }
catch (System.NotSupportedException)
{
    var logo = PlayerSettings.WSA.GetVisualAssetsImage(
        WSAImageType.UWPWide310x150Logo, WSAImageScale._100);
}

Prevention

When it happens

Trigger: Reflective read of storeTileWideLogo80, a stale assembly reading it, or C# dynamic access. Direct source reads are compiler errors.

Common situations: Old build pipeline compiled against a pre-deprecation Unity. Generic PlayerSettings.WSA snapshot tools. Project upgrade across the deprecating version.

Related errors


AI-assisted analysis of Unity-Technologies/UnityCsReference@225b0fbdb5 (2026-08-13). Data as JSON: /api/errors/76a72eee4118b110. Report an issue: GitHub.