This commit is contained in:
2026-06-15 18:18:16 +08:00
parent 97c9fba14e
commit 2b9f134e5f
4164 changed files with 386922 additions and 79 deletions

View File

@@ -0,0 +1,27 @@
using Best.HTTP.Examples.Helpers;
using UnityEngine;
using UnityEngine.UI;
namespace Best.HTTP.Examples
{
class TextWithImageListItem : MultiTextListItem
{
#pragma warning disable 0649
[SerializeField]
protected RawImage _image;
#pragma warning restore
public new TextWithImageListItem SetStatusText(string text)
{
this._statusText.text = text;
return this;
}
public TextWithImageListItem SetImage(Texture2D texture)
{
this._image.texture = texture;
return this;
}
}
}