MCPcopy Create free account
hub / github.com/esengine/esengine / getUint32

Method getUint32

packages/fairygui/src/utils/ByteBuffer.ts:136–140  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

134 }
135
136 public getUint32(): number {
137 const value = this._data.getUint32(this._position, this._littleEndian);
138 this._position += 4;
139 return value;
140 }
141
142 public getInt32(): number {
143 const value = this._data.getInt32(this._position, this._littleEndian);

Callers 15

seekMethod · 0.95
readUintMethod · 0.95
readBufferMethod · 0.95
loadPackageMethod · 0.80
parseBinaryMethod · 0.80
parseNodeMethod · 0.80
parsePropertyMethod · 0.80
parseArrayPropertyMethod · 0.80
isGLBMethod · 0.80
parseGLBMethod · 0.80
readNodeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected