This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
generated from TomJuri/ExampleMod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed the lock aim and made better movement
- Loading branch information
MqsterMorro
committed
Apr 16, 2024
1 parent
8e94fb1
commit da61519
Showing
11 changed files
with
284 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package dev.macrohq.swiftslayer.command; | ||
|
||
import cc.polyfrost.oneconfig.utils.commands.annotations.Command; | ||
import cc.polyfrost.oneconfig.utils.commands.annotations.SubCommand; | ||
import dev.macrohq.swiftslayer.util.LockRotationUtil; | ||
|
||
|
||
@Command("deque") | ||
public class DequeCommand{ | ||
|
||
@SubCommand | ||
public fun pri() { | ||
System.out.println(LockRotationUtil.getInstance().lastYaws.toString()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/kotlin/dev/macrohq/swiftslayer/feature/helper/Angle.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package dev.macrohq.swiftslayer.feature.helper | ||
|
||
data class Angle(val yaw: Float, val pitch: Float) | ||
data class Angle(val yaw: Float, var pitch: Float) |
Oops, something went wrong.