Using Unity. I need to used fixed point to network some data deterministically. How do I convert a fixed point back into a float so that I can apply it to the objects transform?
public class Fixed
{
private int front;
private int back;
private const uint MAX_32 = 4294967295;
}
This is the class I have for the fixed point number.