MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / readSignedInt

Method readSignedInt

Engine/source/core/stream/bitStream.cpp:403–409  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

401}
402
403S32 BitStream::readSignedInt(S32 bitCount)
404{
405 if(readFlag())
406 return -readInt(bitCount - 1);
407 else
408 return readInt(bitCount - 1);
409}
410
411void BitStream::writeNormalVector(const Point3F& vec, S32 bitCount)
412{

Callers 3

unpackDataMethod · 0.80
unpackUpdateMethod · 0.80
unpackDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected