recode game window, improve mouse lock handling, improve debug overlay, version 1.1.2

This commit is contained in:
LabyStudio
2022-06-18 05:35:06 +02:00
parent ba85922102
commit 2502bdaea9
15 changed files with 716 additions and 238 deletions
@@ -87,7 +87,7 @@ export default class NetworkManager {
wrapper.write(array);
let chunk = wrapper.getArray().buffer;
// Decrypt chunk
// Encrypt chunk
if (this.isEncrypted) {
chunk = this.encryption.encrypt(new Uint8Array(chunk));
}