Skip to content

Instantly share code, notes, and snippets.

@aevitas
Created March 10, 2020 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aevitas/17fa52a4b222f09bc58c79564e5379ef to your computer and use it in GitHub Desktop.
Save aevitas/17fa52a4b222f09bc58c79564e5379ef to your computer and use it in GitHub Desktop.
public static unsafe byte[] GetVectorBytes(Vector3 vec)
{
var buffer = new byte[sizeof(Vector3)];
fixed (byte* b = buffer)
{
Marshal.StructureToPtr(vec, new IntPtr(b), false);
return buffer;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment