Tags
Creators
Details
All versions
1.1.0-spigot
Release
InputEngine-spigot 1.1.02 months ago 6
Compatibility
Minecraft: Java Edition
1.21.x
Platforms
Paper
Purpur
Spigot
Changes
[1.1.0] - Extended Input Update
This major update introduces a complete visual overhaul for cooldowns, alongside powerful new input detection methods, combo support, and mouse interception.
⨠Features
- Combo Manager: Added
ComboManagerto easily define sequences of inputs (e.g.A->Dash) that players can perform to trigger custom actions. - Advanced Key States:
PlayerKeyPressEventnow contains information aboutholdDurationMs,isDoubleTapand modifiers. - Visual Cooldowns API: Added
InputEngineAPI.sendCooldown()to trigger on-screen cooldown progress bars on the client side. - Input Blocking API: Added
InputEngineAPI.blockInput()to temporarily lock a player from using a specific keybind. - Mouse Interception: Server can now register vanilla mouse inputs like scroll wheel via the extended client mod.
š ļø Developer Notes
- Added the ability to specify
hasShift,hasCtrl,hasAlt,requiresDoubleTap, andtrackHoldDurationwhen registering an expected keybind. - Refer to ExamplePlugin to see how to implement visual cooldowns and combos.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:cd7YQRjU:Vnug04wd"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:cd7YQRjU:Vnug04wd"
}

