Use page up/down to change creative inventory pages. ()

* Use page up/down to change creative inventory pages.

* Swap keys
This commit is contained in:
modmuss 2025-02-09 13:39:08 +00:00 committed by GitHub
parent 44a0820dd2
commit fcb960140c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,6 +20,7 @@ import java.util.Comparator;
import java.util.List;
import java.util.Objects;
import org.lwjgl.glfw.GLFW;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.Unique;
@ -108,6 +109,19 @@ public abstract class CreativeInventoryScreenMixin extends HandledScreen<Creativ
}
}
@Inject(method = "keyPressed", at = @At("HEAD"), cancellable = true)
private void keyPressed(int keyCode, int scanCode, int modifiers, CallbackInfoReturnable<Boolean> cir) {
if (keyCode == GLFW.GLFW_KEY_PAGE_UP) {
if (switchToPreviousPage()) {
cir.setReturnValue(true);
}
} else if (keyCode == GLFW.GLFW_KEY_PAGE_DOWN) {
if (switchToNextPage()) {
cir.setReturnValue(true);
}
}
}
@Unique
private boolean isGroupVisible(ItemGroup itemGroup) {
return itemGroup.shouldDisplay() && currentPage == getPage(itemGroup);