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

Method readSignedInt

Engine/source/core/stream/bitStream.cpp:373–379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

371}
372
373S32 BitStream::readSignedInt(S32 bitCount)
374{
375 if(readFlag())
376 return -readInt(bitCount - 1);
377 else
378 return readInt(bitCount - 1);
379}
380
381void BitStream::writeNormalVector(const Point3F& vec, S32 bitCount)
382{

Callers 3

unpackDataMethod · 0.80
unpackUpdateMethod · 0.80
unpackDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected