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:
@@ -45,13 +45,13 @@ export class Vector3 extends vec3
|
||||
{
|
||||
buf.writeDoubleLE(this.x, pos);
|
||||
buf.writeDoubleLE(this.y, pos + 8);
|
||||
buf.writeDoubleLE(this.x, pos + 16);
|
||||
buf.writeDoubleLE(this.z, pos + 16);
|
||||
}
|
||||
else
|
||||
{
|
||||
buf.writeFloatLE(this.x, pos);
|
||||
buf.writeFloatLE(this.y, pos + 4);
|
||||
buf.writeFloatLE(this.x, pos + 8);
|
||||
buf.writeFloatLE(this.z, pos + 8);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user