您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
52 行
1.4 KiB
52 行
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace BoatAttack.UI
|
|
{
|
|
public class RaceStatsPlayer : MonoBehaviour
|
|
{
|
|
|
|
public TextMeshProUGUI place;
|
|
public TextMeshProUGUI playerName;
|
|
public TextMeshProUGUI boatType;
|
|
public TextMeshProUGUI bestLap;
|
|
public TextMeshProUGUI time;
|
|
private Boat _boat;
|
|
private int _place = -1;
|
|
private bool _update = true;
|
|
|
|
public void Setup(Boat boat)
|
|
{
|
|
_boat = boat;
|
|
playerName.text = _boat.name;
|
|
boatType.text = "TODO"; // TODO - need to implement
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (!_update) return;
|
|
UpdateStats();
|
|
}
|
|
|
|
private void LateUpdate()
|
|
{
|
|
_update = !_boat.MatchComplete;
|
|
}
|
|
|
|
public void UpdateStats()
|
|
{
|
|
_place = _boat.Place;
|
|
transform.SetSiblingIndex(_place);
|
|
place.text = RaceUI.OrdinalNumber(_boat.Place);
|
|
|
|
var bestLapTime = RaceUI.BestLapFromSplitTimes(_boat.SplitTimes);
|
|
bestLap.text = bestLapTime > 0 ? RaceUI.FormatRaceTime(bestLapTime) : "N/A";
|
|
|
|
var totalTime = _boat.MatchComplete ? _boat.SplitTimes.Last() : RaceManager.RaceTime;
|
|
time.text = RaceUI.FormatRaceTime(totalTime);
|
|
}
|
|
}
|
|
}
|