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

Method ReadInt3

Source/Engine/Utilities/Utils.cs:528–531  ·  view source on GitHub ↗

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

(this BinaryReader stream)

Source from the content-addressed store, hash-verified

526 /// <param name="stream">The stream.</param>
527 /// <returns>The value.</returns>
528 public static Int3 ReadInt3(this BinaryReader stream)
529 {
530 return new Int3(stream.ReadInt32(), stream.ReadInt32(), stream.ReadInt32());
531 }
532
533 /// <summary>
534 /// Reads the Int4 from the binary stream.

Callers 1

ReadVariantMethod · 0.80

Calls 1

ReadInt32Method · 0.45

Tested by

no test coverage detected