@quenty/camera 14.17.0 → 14.18.0

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,17 @@
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.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.17.0...@quenty/camera@14.18.0) (2025-01-19)
7
+
8
+
9
+ ### Features
10
+
11
+ * Allow setting velocity strength ([dca25af](https://github.com/Quenty/NevermoreEngine/commit/dca25af9bf997406cc17c705772b421c8dc70a1a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [14.17.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.16.0...@quenty/camera@14.17.0) (2024-12-15)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/camera
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camera",
3
- "version": "14.17.0",
3
+ "version": "14.18.0",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "0a20ace4dc7d38f8c889bf73b716b33e8a767c54"
48
+ "gitHead": "a55ec046e30ddacc356f3d93fcbc6058888a88f6"
49
49
  }
@@ -235,6 +235,10 @@ function CameraControls:_mouseTranslationToAngle(translationVector)
235
235
  return Vector2.new(xTheta, yTheta)
236
236
  end
237
237
 
238
+ function CameraControls:SetVelocityStrength(strength)
239
+ self._strength = strength
240
+ end
241
+
238
242
  function CameraControls:_getVelocityTracker(strength, startVelocity)
239
243
  strength = strength or 1
240
244