MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ReadInt4

Method ReadInt4

Source/Engine/Utilities/Utils.cs:538–541  ·  view source on GitHub ↗

Reads the Int4 from the binary stream. The stream. The value.

(this BinaryReader stream)

Source from the content-addressed store, hash-verified

536 /// <param name="stream">The stream.</param>
537 /// <returns>The value.</returns>
538 public static Int4 ReadInt4(this BinaryReader stream)
539 {
540 return new Int4(stream.ReadInt32(), stream.ReadInt32(), stream.ReadInt32(), stream.ReadInt32());
541 }
542
543 /// <summary>
544 /// Reads the Quaternion from the binary stream.

Callers 1

ReadVariantMethod · 0.80

Calls 1

ReadInt32Method · 0.45

Tested by

no test coverage detected