temp
This commit is contained in:
Crizomb 2025-01-29 00:41:25 +01:00
parent a87f0ed109
commit a17810ffeb
114 changed files with 5184 additions and 5 deletions

View file

@ -0,0 +1,37 @@
using UnityEngine;
using UnityEngine.UI;
public class PVMETER : MonoBehaviour
{
[SerializeField] Image PVMeter;
private float PVm;
private float PVMax;
public Gradient colorGradient;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log("JE SUIS LA");
var gradient = new Gradient();
var colors = new GradientColorKey[2];
colors[0] = new GradientColorKey(Color.red, 0.0f);
colors[1] = new GradientColorKey(Color.green, 1.0f);
var alphas = new GradientAlphaKey[2];
alphas[0] = new GradientAlphaKey(1.0f, 0.0f);
alphas[1] = new GradientAlphaKey(1.0f, 0.0f);
gradient.SetKeys(colors, alphas);
PVm = GetComponent<BaseDuckScript>().getHealth() / GetComponent<BaseDuckScript>().getBaseHealth();
Debug.Log(PVm);
PVMeter.fillAmount = PVm;
PVMeter.color = colorGradient.Evaluate(PVm);
}
}