移动端测试

This commit is contained in:
2025-07-16 15:37:39 +08:00
parent 8c1752f6d7
commit 2d342dfe85
879 changed files with 587180 additions and 625 deletions

View File

@ -13,13 +13,17 @@ public class LogoController : MonoBehaviour
LogoUpdate();
}
void LogoUpdate() {
GetComponent<Text>().text = File.ReadAllText(Application.streamingAssetsPath + "\\Data\\测试数据\\首页\\Logo.txt");
void LogoUpdate()
{
WebRequsetTool.Inst.Get(Application.streamingAssetsPath + "\\Data\\测试数据\\首页\\Logo.txt", (str) =>
{
GetComponent<Text>().text = str;
});
}
void Update()
{
}
}