From dd285544c35db5944da2ba4ea2be92ea7615a92e Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Tue, 13 Aug 2024 02:03:16 +0300 Subject: [PATCH] enable mouse raw input and chat select by default for new users! --- README.MD | 4 ++-- src/optionsStorage.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.MD b/README.MD index 69b6386c..dcfe3fd4 100644 --- a/README.MD +++ b/README.MD @@ -25,10 +25,10 @@ All components that are in [Storybook](https://mcraft.fun/storybook) are publish ### Recommended Settings -- Controls -> **Raw Input** -> **On** - This will make the controls more precise - Controls -> **Touch Controls Type** -> **Joystick** - Controls -> **Auto Full Screen** -> **On** - To avoid ctrl+w issue -- Interface -> **Chat Select** -> **On** - To select chat messages +- Controls -> **Raw Input** -> **On** - This will make the controls more precise (UPD: already enabled by default) +- Interface -> **Chat Select** -> **On** - To select chat messages (UPD: already enabled by default) ### World Loading diff --git a/src/optionsStorage.ts b/src/optionsStorage.ts index 3eadcb2c..990dd31e 100644 --- a/src/optionsStorage.ts +++ b/src/optionsStorage.ts @@ -10,7 +10,7 @@ const defaultOptions = { multiplayerRenderDistance: 3, closeConfirmation: true, autoFullScreen: false, - mouseRawInput: false, + mouseRawInput: true, autoExitFullscreen: false, localUsername: 'wanderer', mouseSensX: 50, @@ -69,7 +69,7 @@ const defaultOptions = { renderEntities: true, smoothLighting: true, newVersionsLighting: false, - chatSelect: false, + chatSelect: true, autoJump: 'auto' as 'auto' | 'always' | 'never', autoParkour: false,