You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51 lines
1.1 KiB

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class Timer : MonoBehaviour {
//Time stuff
public float MaxTimer = 120.0f;
float curTime = 0.0f;
public Transform Pivot;
public Transform Sun;
float curRot = 0;
public float Dawn = 125; //FF7D00 125
public float Noon = 248; //FFF800 248
float colorDif;
Image SunImage;
public GameMode mode;
void Start()
{
SunImage = Sun.gameObject.GetComponent<Image>();
colorDif = Mathf.Abs(Noon - Dawn);
}
void Update () {
curTime += 1.0f * Time.deltaTime;
if (curTime >= MaxTimer)
{
mode.PreGameLose();
}
// Color newColor;
if (curTime > MaxTimer / 2)
{
// newColor = new Color(SunImage.color.r, SunImage.color.g + SunImage.color.b);
}
else
{
}
// SunImage.color = newColor;
Sun.RotateAround(Pivot.transform.position, -1 * Sun.transform.forward, (180 / MaxTimer) * Time.deltaTime);
}
}