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">
|
<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)
|
[](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
|
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.
|
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
|
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.
|
in GUIs. In the future, this will be expanded to have more sounds.
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
[versions]
|
[versions]
|
||||||
loom = "1.1.+"
|
loom = "1.1.+"
|
||||||
loom_quiltflower = "1.8.+"
|
loom_quiltflower = "1.8.+"
|
||||||
minotaur = "2.6.+"
|
minotaur = "2.7.+"
|
||||||
cursegradle = "2.+"
|
cursegradle = "2.+"
|
||||||
github_release = "2.+"
|
github_release = "2.+"
|
||||||
machete = "1.+"
|
machete = "2.+"
|
||||||
grgit = "5.0.+"
|
grgit = "5.0.+"
|
||||||
blossom = "1.3.+"
|
blossom = "1.3.+"
|
||||||
|
|
||||||
minecraft = "1.19.4"
|
minecraft = "1.19.4"
|
||||||
quilt_mappings = "10"
|
quilt_mappings = "10"
|
||||||
fabric_loader = "0.14.17"
|
fabric_loader = "0.14.19"
|
||||||
fabric_api = "0.78.0+1.19.4"
|
fabric_api = "0.78.0+1.19.4"
|
||||||
mixin_extras = "0.2.0-beta.6"
|
mixin_extras = "0.2.0-beta.6"
|
||||||
yet_another_config_lib = "2.4.1"
|
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
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
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
|
networkTimeout=10000
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
@ -117,8 +117,8 @@ public class InGameInputHandler {
|
|||||||
impulseY = lookInputModifier.modifyY(impulseY, controller);
|
impulseY = lookInputModifier.modifyY(impulseY, controller);
|
||||||
|
|
||||||
if (minecraft.mouseHandler.isMouseGrabbed() && minecraft.isWindowActive() && player != null) {
|
if (minecraft.mouseHandler.isMouseGrabbed() && minecraft.isWindowActive() && player != null) {
|
||||||
lookInputX = impulseX * controller.config().horizontalLookSensitivity;
|
lookInputX = impulseX * controller.config().horizontalLookSensitivity * 65f;
|
||||||
lookInputY = impulseY * controller.config().verticalLookSensitivity;
|
lookInputY = impulseY * controller.config().verticalLookSensitivity * 65f;
|
||||||
} else {
|
} else {
|
||||||
lookInputX = lookInputY = 0;
|
lookInputX = lookInputY = 0;
|
||||||
}
|
}
|
||||||
@ -126,7 +126,7 @@ public class InGameInputHandler {
|
|||||||
|
|
||||||
public void processPlayerLook(float deltaTime) {
|
public void processPlayerLook(float deltaTime) {
|
||||||
if (minecraft.player != null) {
|
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