@quenty/camera 14.41.0 → 14.41.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [14.41.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.41.0...@quenty/camera@14.41.1) (2026-06-05)
7
+
8
+ ### Bug Fixes
9
+
10
+ - Pass input ([faf1d56](https://github.com/Quenty/NevermoreEngine/commit/faf1d567726e8d640d8fd0060342fc200840a640))
11
+
6
12
  # [14.41.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.40.1...@quenty/camera@14.41.0) (2026-06-03)
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camera",
3
- "version": "14.41.0",
3
+ "version": "14.41.1",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -53,5 +53,5 @@
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "gitHead": "75291c76133c2b87b71c620125800dd3d72b7fe1"
56
+ "gitHead": "4f028984d278f4c3c77ab60ae1ce11cbaf00cb6d"
57
57
  }
@@ -101,10 +101,12 @@ function ConstrainedLookControls.Enable(self: ConstrainedLookControls)
101
101
  if userInputState == Enum.UserInputState.Begin then
102
102
  self:_beginDrag(inputObject)
103
103
  end
104
+ return Enum.ContextActionResult.Pass
104
105
  end, false, unpack(self._dragBeginTypes))
105
106
 
106
107
  ContextActionService:BindAction(self._key .. "Rotate", function(_, _, inputObject)
107
108
  self._gamepadRotateModel:HandleThumbstickInput(inputObject)
109
+ return Enum.ContextActionResult.Pass
108
110
  end, false, Enum.KeyCode.Thumbstick2)
109
111
 
110
112
  maid:GiveTask(function()