Skip to content

Commit

Permalink
Fixed inversion of CameraMovePointer
Browse files Browse the repository at this point in the history
  • Loading branch information
Snow1226 committed Mar 19, 2024
1 parent 3d50655 commit 427be11
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CameraPlus/Behaviours/CameraMoverPointer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected virtual void LateUpdate()
{
if (_grabbingController != null)
{
var diff = -_grabbingController.verticalAxisValue * Time.unscaledDeltaTime;
var diff = _grabbingController.verticalAxisValue * Time.unscaledDeltaTime;
if (_grabPos.magnitude > MinScrollDistance)
_grabPos -= Vector3.forward * diff;
else
Expand Down
3 changes: 3 additions & 0 deletions CameraPlus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# V7.0.12 Changes
- If you grab the camera and move it with the stick, Fixed an issue where the movement would be the opposite of what was expected.

# V7.0.11 Changes
- Lighter rendering.

Expand Down
4 changes: 2 additions & 2 deletions CameraPlus/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.0.11")]
[assembly: AssemblyFileVersion("7.0.11")]
[assembly: AssemblyVersion("7.0.12")]
[assembly: AssemblyFileVersion("7.0.12")]
2 changes: 1 addition & 1 deletion CameraPlus/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "CameraPlus",
"name": "CameraPlus",
"author": "Various Modders",
"version": "7.0.11-backport",
"version": "7.0.12-backport",
"description": "CameraPlus is a Beat Saber mod that allows for multiple wide FOV cameras with smoothed movement.",
"gameVersion": "1.22.1",
"dependsOn": {
Expand Down

0 comments on commit 427be11

Please sign in to comment.