Skip to content

Fixed encoding problem for API_v2 demo #816

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Demo/API_V2/Assets/API/OpenInterface/GameClub/GameClub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ IEnumerator CreateGameClubButton(float delay)
});
}

// ²âÊÔ API
//测试API
protected override void TestAPI(string[] args)
{
getGameClubData();
Expand Down Expand Up @@ -82,22 +82,22 @@ private void getGameClubData()

private bool _isGameClubShow = false;

// Çл»ÓÎϷȦ°´Å¥ÏÔʾ/Òþ²Ø
// 切换游戏圈按钮显示/隐藏
private void GameClubButtonSwitch()
{
//if (_isGameClubShow)
//{
// // ÏÔʾÓÎϷȦ°´Å¥
// _gameClubButton.Show();
// GameManager.Instance.detailsController.ChangeExtraButtonText(0, "Òþ²ØÓÎϷȦ°´Å¥");
//}
//else
//{
// // Òþ²ØÓÎϷȦ°´Å¥
// _gameClubButton.Hide();
// GameManager.Instance.detailsController.ChangeExtraButtonText(0, "ÏÔʾÓÎϷȦ°´Å¥");
//}
//_isGameClubShow = !_isGameClubShow;
// if (_isGameClubShow)
// {
// // 显示游戏圈按钮
// _gameClubButton.Show();
// GameManager.Instance.detailsController.ChangeExtraButtonText(0, "隐藏游戏圈按钮");
// }
// else
// {
// // 隐藏游戏圈按钮
// _gameClubButton.Hide();
// GameManager.Instance.detailsController.ChangeExtraButtonText(0, "显示游戏圈按钮");
// }
// _isGameClubShow = !_isGameClubShow;
}

private void GameClubButtonDestroy()
Expand Down
Loading