For this week I will be working on implementing the offline android build once our game designer is done with making our controls look visually appealing, in the meantime, I will be preparing for the Android build soon. I have been working on visually indicating the health on the player itself by using the material color, I am currently doing this by using two colors however I am unable to get it to work according to how we would like it to work as the calculations I am doing for T in color.lerp are based of my health/maximum health & T in my current case is a value between 0 which is color A , 1 which is color B & 0.5 which is a color between A and B . The method works between green and yellow, however, this will not work between yellow and red as the value the health calculates will be a value between 0.5 and 0 which would not transition properly. I have been looking into making a gradient, however, I do not understand how the gradients work completely. ...