You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
806 B
C#
31 lines
806 B
C#
2 months ago
|
using D2D.Gameplay;
|
||
|
using D2D.Utilities;
|
||
|
using static D2D.Utilities.SettingsFacade;
|
||
|
using static D2D.Utilities.CommonLazyFacade;
|
||
|
using static D2D.Utilities.CommonGameplayFacade;
|
||
|
|
||
|
namespace D2D.UI
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Shows player`s progress along Z axis.
|
||
|
/// </summary>
|
||
|
public class PlayerToFinishFillBar : FillBarBase
|
||
|
{
|
||
|
private Player _player;
|
||
|
private Finish _finish;
|
||
|
|
||
|
private void Start()
|
||
|
{
|
||
|
_player = FindObjectOfType<Player>();
|
||
|
_finish = FindObjectOfType<Finish>();
|
||
|
}
|
||
|
|
||
|
protected override float Calculate()
|
||
|
{
|
||
|
var playerZ = _player.transform.position.z;
|
||
|
var finishZ = _finish.transform.position.z;
|
||
|
|
||
|
return playerZ.FactorRange(playerZ, finishZ);
|
||
|
}
|
||
|
}
|
||
|
}
|