英文文案调整
This commit is contained in:
parent
978debcd23
commit
c96cdbb163
@ -81,7 +81,7 @@ namespace Assets.Scenes.Ride.Scripts
|
|||||||
|
|
||||||
if (_canCancelApply)
|
if (_canCancelApply)
|
||||||
{
|
{
|
||||||
CompetitionStatus.text = "applied";
|
CompetitionStatus.text = "Registered";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -156,7 +156,7 @@ namespace Assets.Scenes.Ride.Scripts
|
|||||||
//比赛状态
|
//比赛状态
|
||||||
CompetitionStatus.text = competition.StatusVlaue.ToString();
|
CompetitionStatus.text = competition.StatusVlaue.ToString();
|
||||||
//参赛选手
|
//参赛选手
|
||||||
Contestant.text = competition.UserList.Count.ToString() + "Players";
|
Contestant.text = competition.UserList.Count.ToString() + "Riders";
|
||||||
ShowPlayers(competition.UserList);
|
ShowPlayers(competition.UserList);
|
||||||
//路书描述
|
//路书描述
|
||||||
mapDescText.text = competition.Dec;
|
mapDescText.text = competition.Dec;
|
||||||
|
|||||||
@ -298,6 +298,11 @@ namespace Assets.Scenes.Ride.Scripts
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
//如果是参赛选手默认进入3d视角
|
||||||
|
if (mainController.cyclingModel == Model.CyclingModel.Competition && !mainController.isWatch)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
mainController.Is3dView = false;
|
mainController.Is3dView = false;
|
||||||
ChangeView(null);
|
ChangeView(null);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -130,6 +130,7 @@ public class CyclingController : DeviceServiceMonoBase
|
|||||||
//进入比赛
|
//进入比赛
|
||||||
if (competitionId > 0)
|
if (competitionId > 0)
|
||||||
{
|
{
|
||||||
|
this.cyclingModel = CyclingModel.Competition;
|
||||||
StartCoroutine(InitRace());
|
StartCoroutine(InitRace());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user