-
-
Notifications
You must be signed in to change notification settings - Fork 920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GuiMove improvements #4282
GuiMove improvements #4282
Conversation
Also, fix the fact that pressing the arrow or space keys presses inventory buttons (particularly annoying when using mods like ui-utils that add buttons to interfaces) |
I just realised you can probably use the frameTime variable from Render3dEvent instead of having to calculate it again in the module, other than that it looks fine to merge |
@Wide-Cat I've modified the code to use |
GuiMove improvements (MeteorDevelopment#4282) Fix AutoBrewer crash (MeteorDevelopment#4329) Damage utils refactor (MeteorDevelopment#4083) Implement ColorListSetting text parser (MeteorDevelopment#4365) Correct BlockUtils#isValidMobSpawn (MeteorDevelopment#4367) fix bow aimbot not working in creative mode Fix Notebot align center on a slab (MeteorDevelopment#4354) Revert Fabric loader bump Sodium 0.5.7 compat + bump dependencies Marked <0.5.6 as breaking, seeing the mixin changes. Extend range of characters rendered by the custom font renderer (MeteorDevelopment#4362) Fix PlayerModelHud not rendering when minecraft GUI scale is not 1 (MeteorDevelopment#4332) Allow any characters in cracked names Fix ReflectInit exception message (MeteorDevelopment#4317) Freecam improvements Add Disconnect command Allows users to disconnect from a server, and specify a `reason` message too. Fix scrolling with freecam (MeteorDevelopment#4312) Fix Jesus preventing players from using a boat (MeteorDevelopment#4277) Stuff (MeteorDevelopment#4301) - destroy mesh buffers when switching fonts - only flip font buffer once - turn CharData into a record - fail-fast when game would crash due to side effects - use getEnumConstants() instead of reflection - fix typos update incompatibilities Fix Flight underwater movement (MeteorDevelopment#4288) Fix Better Tooltips with suspicious stew (MeteorDevelopment#4291) AutoBreed mob age filter Add the option to target only babies, adults, or both. KillAura mob age filter Add the option to target only babies, adults, or both. Also, retrieve `CrystalAura`'s status via the `Modules` getter. Dropping 1.20.3 support Addons are already developing for 1.20.4 since our template targets that version. Also, the critical decorated pots bug makes 1.20.3 unappealing to use overall. Autonametag patch. (MeteorDevelopment#4278) Sort the favorites category (MeteorDevelopment#4265) Make chest swap close inventory because anticheats Reapply "1.20.4 update (MeteorDevelopment#4249)" This reverts commit 4cc4104. Future version 0.5.6 Update Orbit to 0.2.4 Revert "1.20.4 update (MeteorDevelopment#4249)" This reverts commit b0a927b. 1.20.4 update (MeteorDevelopment#4249) prevent leading spaces fix bookbot text wrapping prevent crash on book copy Fixed bug where the selection wouldn't get deleted when you are at the last index Update Names.java faster maps Optimise PotionTimersHud (MeteorDevelopment#4211) i guess it looks better like this Remove useless sqrt-ing once and for all Add "Sign" setting to BookBot (MeteorDevelopment#4193) Chat fix fix small hud details (MeteorDevelopment#4190) Improve AutoLog code (MeteorDevelopment#4202) Fix PlayerHeadTexture memory leaks (MeteorDevelopment#4196) Add helper subcommands to .input (MeteorDevelopment#4197) reload when switching fullbright mode fix not showing capes from other sources add local time to corrupted system config backups catch corrupted files Improve WaypointCommand Allow the usage of relative coords, via `Vec3ArgumentType`. Thanks to Crosby for carrying me as always. Fix autoclicker delay visibility (MeteorDevelopment#4185) fix anti packet kick fixed drop all not dropping off hand (MeteorDevelopment#4176) Update ServerCommand Add option to create waypoint with coords Note: the passed values are absolute coords. Make Freecam work with F3+G (chunk borders) Add levers, rails and redstone gates to SpawnProofer Bump dependencies Simplify MC and FL version updates Automatically update the fabric.mod.json based on gradle.properties Make LightOverlay & SpawnProofer faster (MeteorDevelopment#4164) dont run `Waypoints.render()` if waypoints are off (MeteorDevelopment#4165) fullbright luminance mode - fixes and new setting Add IPathManager.ISettings.save method Make Baritone optional and not bundled with Meteor (MeteorDevelopment#4155) call on main thread Fix Meteor logo when using BetterChat with Player Heads and Timestamps Echest memory patch (MeteorDevelopment#4153) Update issue templates (MeteorDevelopment#4152) [skip ci] Make Infinite Chat Box compatible with ViaFabricPlus Reconfiguration phase disables modules. fix .server info command Fix crash, add icons to spoofed potions screen Fix publishing to maven Future version 0.5.5
Type of change
Description
Rotations inside GUIs (from GuiMove) are only done every tick, which produces a jerky effect.
before.mp4
This PR passes this functionality to Render3DEvent, resulting in a much smoother rendering.
after.mp4
Checklist: