#I change my value to `>99f`, then it
1 messages · Page 1 of 1 (latest)
not sure what could be happening, not too familiar with their behaviour. I would Debug.Log the value to familiarize myself with it if i were you. Could be that if you try to add Beyond the max with code it wont work idk, if that were the case then you'd be stuck at whatever value you were before it tried to go beyond 100. only thing i can think of right now
I tested slider value and it should hit the cap.
I would monitor this section too:
if (Lust.value != 0f)
{
Lust.value -= 1f * Time.deltaTime;
}
Could be that that's keeping it from hitting max
could be hitting max and then next update on HDS be reduced , and if Update on HE script happens after it then you wont get the == 100 check
my money is on that happening, best of luck!