mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-05 19:47:00 -04:00
Use page up/down to change creative inventory pages. (#4416)
* Use page up/down to change creative inventory pages. * Swap keys
This commit is contained in:
parent
44a0820dd2
commit
fcb960140c
1 changed files with 14 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue