forked from Clones/Controlify
bump deps
This commit is contained in:
2
.github/README.md
vendored
2
.github/README.md
vendored
@ -2,7 +2,7 @@
|
||||
|
||||
<img src="https://raw.githubusercontent.com/isXander/Controlify/1.19.x/dev/src/main/resources/icon.png" alt="Icon">
|
||||
|
||||
# Control-ify
|
||||
# Controlify
|
||||
|
||||
[](https://fabricmc.net)
|
||||

|
||||
|
@ -13,7 +13,7 @@ This requires use of a compatible controller, such as a Dualsense controller.
|
||||
Currently, the Steam Deck is not supported, as it does not expose the gyro data to the OS, however, explicit
|
||||
support for this device is planned in the future.
|
||||
|
||||
## UI sounds
|
||||
### UI sounds
|
||||
|
||||
A toggleable setting enables playing the legacy console edition UI sound when changing the selected component
|
||||
in GUIs. In the future, this will be expanded to have more sounds.
|
||||
|
@ -1,16 +1,16 @@
|
||||
[versions]
|
||||
loom = "1.1.+"
|
||||
loom_quiltflower = "1.8.+"
|
||||
minotaur = "2.6.+"
|
||||
minotaur = "2.7.+"
|
||||
cursegradle = "2.+"
|
||||
github_release = "2.+"
|
||||
machete = "1.+"
|
||||
machete = "2.+"
|
||||
grgit = "5.0.+"
|
||||
blossom = "1.3.+"
|
||||
|
||||
minecraft = "1.19.4"
|
||||
quilt_mappings = "10"
|
||||
fabric_loader = "0.14.17"
|
||||
fabric_loader = "0.14.19"
|
||||
fabric_api = "0.78.0+1.19.4"
|
||||
mixin_extras = "0.2.0-beta.6"
|
||||
yet_another_config_lib = "2.4.1"
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
|
||||
networkTimeout=10000
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
@ -117,8 +117,8 @@ public class InGameInputHandler {
|
||||
impulseY = lookInputModifier.modifyY(impulseY, controller);
|
||||
|
||||
if (minecraft.mouseHandler.isMouseGrabbed() && minecraft.isWindowActive() && player != null) {
|
||||
lookInputX = impulseX * controller.config().horizontalLookSensitivity;
|
||||
lookInputY = impulseY * controller.config().verticalLookSensitivity;
|
||||
lookInputX = impulseX * controller.config().horizontalLookSensitivity * 65f;
|
||||
lookInputY = impulseY * controller.config().verticalLookSensitivity * 65f;
|
||||
} else {
|
||||
lookInputX = lookInputY = 0;
|
||||
}
|
||||
@ -126,7 +126,7 @@ public class InGameInputHandler {
|
||||
|
||||
public void processPlayerLook(float deltaTime) {
|
||||
if (minecraft.player != null) {
|
||||
minecraft.player.turn(lookInputX * 65f * deltaTime, lookInputY * 65f * deltaTime);
|
||||
minecraft.player.turn(lookInputX * deltaTime, lookInputY * deltaTime);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user