@quenty/camera 14.18.0 → 14.18.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,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.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.18.0...@quenty/camera@14.18.1) (2025-01-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Apply strength to camera controls ([e8a15bc](https://github.com/Quenty/NevermoreEngine/commit/e8a15bca98cd77730bd398c7cfe73466d616d7ef))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [14.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.17.0...@quenty/camera@14.18.0) (2025-01-19)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/camera",
|
|
3
|
-
"version": "14.18.
|
|
3
|
+
"version": "14.18.1",
|
|
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": "
|
|
48
|
+
"gitHead": "95918baa61371e447f524181ecd6903d1f4444d7"
|
|
49
49
|
}
|
|
@@ -175,7 +175,7 @@ function CameraControls:BeginDrag(beginInputObject)
|
|
|
175
175
|
end))
|
|
176
176
|
|
|
177
177
|
if self._rotatedCamera.ClassName == "SmoothRotatedCamera" then
|
|
178
|
-
self._rotVelocityTracker = self:_getVelocityTracker(0.05, Vector2.zero)
|
|
178
|
+
self._rotVelocityTracker = self:_getVelocityTracker(self._strength or 0.05, Vector2.zero)
|
|
179
179
|
end
|
|
180
180
|
|
|
181
181
|
self._maid._dragMaid = maid
|
|
@@ -354,4 +354,4 @@ function CameraControls:Destroy()
|
|
|
354
354
|
setmetatable(self, nil)
|
|
355
355
|
end
|
|
356
356
|
|
|
357
|
-
return CameraControls
|
|
357
|
+
return CameraControls
|