Seems silly to me, but I have something like this:
float answer;
answer = 1 / 3;
answer comes out 0 in the inspector window.
If I instead use
answer = 0.3333333333333333f
it comes out fine. However, I prefer to use the fraction and have the game do the calculation. How do I make it do this?