This repository has been archived by the owner on Nov 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Range can now be configured per-axis.
- Ready for release 1.09
- Loading branch information
Showing
9 changed files
with
42 additions
and
38 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
using Nefarius.ViGEm.Client.Targets.Xbox360; | ||
|
||
namespace AyaGyroAiming | ||
namespace AyaGyroAiming | ||
{ | ||
public class Settings | ||
{ | ||
public bool GyroAiming { get; set; } | ||
public float Aggressivity { get; set; } | ||
public float Range { get; set; } | ||
|
||
public float RangeAxisX { get; set; } | ||
public float RangeAxisY { get; set; } | ||
public float RangeAxisZ { get; set; } | ||
|
||
public bool InvertAxisX { get; set; } | ||
public bool InvertAxisY { get; set; } | ||
public bool InvertAxisZ { get; set; } | ||
|
||
public string Trigger { get; set; } | ||
public uint PullRate { get; set; } | ||
public uint MaxSample { get; set; } | ||
public bool MonitorRatio { get; set; } | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
{ | ||
"GyroAiming": true, | ||
"Aggressivity": 0.5, | ||
"Range": 15000, | ||
"RangeAxisX": 1.5, | ||
"RangeAxisY": 1.5, | ||
"RangeAxisZ": 1.5, | ||
"InvertAxisX": false, | ||
"InvertAxisY": false, | ||
"InvertAxisZ": false, | ||
"Trigger": "", | ||
"Trigger": "LeftTrigger", | ||
"PullRate": 10, | ||
"MaxSample": 1, | ||
"MonitorRatio": false | ||
"MaxSample": 1 | ||
} |
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,12 +1,13 @@ | ||
{ | ||
"GyroAiming": false, | ||
"Aggressivity": 0.5, | ||
"Range": 10000, | ||
"RangeAxisX": 1.0, | ||
"RangeAxisY": 1.0, | ||
"RangeAxisZ": 1.0, | ||
"InvertAxisX": false, | ||
"InvertAxisY": false, | ||
"InvertAxisZ": false, | ||
"Trigger": "", | ||
"PullRate": 10, | ||
"MaxSample": 1, | ||
"MonitorRatio": false | ||
"MaxSample": 1 | ||
} |
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,12 +1,13 @@ | ||
{ | ||
"GyroAiming": true, | ||
"Aggressivity": 0.5, | ||
"Range": 10000, | ||
"RangeAxisX": 1.0, | ||
"RangeAxisY": 1.0, | ||
"RangeAxisZ": 1.0, | ||
"InvertAxisX": false, | ||
"InvertAxisY": false, | ||
"InvertAxisZ": false, | ||
"Trigger": "", | ||
"PullRate": 10, | ||
"MaxSample": 1, | ||
"MonitorRatio": false | ||
"MaxSample": 1 | ||
} |
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,12 +1,13 @@ | ||
{ | ||
"GyroAiming": false, | ||
"Aggressivity": 0.5, | ||
"Range": 10000, | ||
"RangeAxisX": 1.0, | ||
"RangeAxisY": 1.0, | ||
"RangeAxisZ": 1.0, | ||
"InvertAxisX": false, | ||
"InvertAxisY": false, | ||
"InvertAxisZ": false, | ||
"Trigger": "", | ||
"PullRate": 10, | ||
"MaxSample": 1, | ||
"MonitorRatio": false | ||
"MaxSample": 1 | ||
} |
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,12 +1,13 @@ | ||
{ | ||
"GyroAiming": false, | ||
"Aggressivity": 0.5, | ||
"Range": 10000, | ||
"RangeAxisX": 1.0, | ||
"RangeAxisY": 1.0, | ||
"RangeAxisZ": 1.0, | ||
"InvertAxisX": false, | ||
"InvertAxisY": false, | ||
"InvertAxisZ": false, | ||
"Trigger": "", | ||
"PullRate": 10, | ||
"MaxSample": 1, | ||
"MonitorRatio": false | ||
"MaxSample": 1 | ||
} |