We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All float32 values are actually little-endian; what may be confusing is that it is sent as big-endian across the wire (e.g. across the network).
float32
Relevant code from extension to illustrate:
if((i + 40) < event.data.byteLength){ for(var j = i; j <= (start + off + 4*5); j += 4){ console.log("Leaderboard Score: " + dv.getFloat32(j, /*littleEndian=*/true)); } }
The text was updated successfully, but these errors were encountered:
^ @FlorianCassayre
Sorry, something went wrong.
No branches or pull requests
All
float32
values are actually little-endian; what may be confusing is that it is sent as big-endian across the wire (e.g. across the network).Relevant code from extension to illustrate:
The text was updated successfully, but these errors were encountered: