Teleports, Asset upload / download, Restructure stuff, Fix varlength read bug, BVH parser, agent initial appearance and animation glitches, LLSD + Caps + Event queue
This commit is contained in:
@@ -92,11 +92,11 @@ export class ObjectImageMessage implements MessageBase
|
||||
newObjObjectData['ObjectLocalID'] = buf.readUInt32LE(pos);
|
||||
pos += 4;
|
||||
varLength = buf.readUInt8(pos++);
|
||||
newObjObjectData['MediaURL'] = buf.slice(pos, pos + (varLength - 1));
|
||||
newObjObjectData['MediaURL'] = buf.slice(pos, pos + varLength);
|
||||
pos += varLength;
|
||||
varLength = buf.readUInt16LE(pos);
|
||||
pos += 2;
|
||||
newObjObjectData['TextureEntry'] = buf.slice(pos, pos + (varLength - 1));
|
||||
newObjObjectData['TextureEntry'] = buf.slice(pos, pos + varLength);
|
||||
pos += varLength;
|
||||
this.ObjectData.push(newObjObjectData);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user