yyl
2026-03-31 0fa617a09eedf6bdb25eda55fac1d3344859fd93
Main/Utility/ComponentExtersion.cs
@@ -539,11 +539,17 @@
            return;
        }
        _image.enabled = false;
        UILoader.LoadTexture2DPNGAsync(_id).ContinueWith(texture =>
        {
            if (_image != null && texture != null)
            if (_image == null) return;
            if (texture != null)
            {
                _image.texture = texture;
                _image.SetNativeSize();
                _image.enabled = true;
            }
        }).Forget();
    }