is there any else way finding only floating point?
char c;
float f = Time.time;
f -= (int) f;
if (f < 0.5){
c = 'z';
}
else{
c = 'x';
}
I know I could do it with random but I don’t want random
and if there is a way I’d like to know how to find let say everything that’s after
0.00…