@quenty/camera 14.6.0-canary.490.601c967.0 → 14.7.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 +20 -1
- package/package.json +16 -16
- package/src/Client/Controls/CameraControls.lua +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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.
|
|
6
|
+
# [14.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.6.0...@quenty/camera@14.7.0) (2024-09-12)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/camera
|
|
9
9
|
|
|
@@ -11,6 +11,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
# [14.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.5.1...@quenty/camera@14.6.0) (2024-08-09)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @quenty/camera
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [14.5.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.5.0...@quenty/camera@14.5.1) (2024-07-16)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* CameraControls destruction in Enabled state ([#477](https://github.com/Quenty/NevermoreEngine/issues/477)) ([ef6975e](https://github.com/Quenty/NevermoreEngine/commit/ef6975e7fb2d396569f33231d45b32684e803940))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
14
33
|
# [14.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.4.0...@quenty/camera@14.5.0) (2024-05-09)
|
|
15
34
|
|
|
16
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/camera",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.7.0",
|
|
4
4
|
"description": "Quenty's camera system for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,25 +25,25 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/acceltween": "2.5.0
|
|
29
|
-
"@quenty/baseobject": "10.4.0
|
|
30
|
-
"@quenty/cframeutils": "5.5.0",
|
|
31
|
-
"@quenty/cubicspline": "10.4.0
|
|
32
|
-
"@quenty/ducktype": "5.4.0
|
|
33
|
-
"@quenty/inputobjectutils": "4.
|
|
34
|
-
"@quenty/loader": "10.4.0
|
|
35
|
-
"@quenty/maid": "3.
|
|
36
|
-
"@quenty/math": "2.7.0",
|
|
37
|
-
"@quenty/qframe": "10.4.0
|
|
38
|
-
"@quenty/servicebag": "11.5.0
|
|
39
|
-
"@quenty/spring": "10.4.0
|
|
40
|
-
"@quenty/vector3utils": "10.4.0
|
|
28
|
+
"@quenty/acceltween": "^2.5.0",
|
|
29
|
+
"@quenty/baseobject": "^10.4.0",
|
|
30
|
+
"@quenty/cframeutils": "^5.5.0",
|
|
31
|
+
"@quenty/cubicspline": "^10.4.0",
|
|
32
|
+
"@quenty/ducktype": "^5.4.0",
|
|
33
|
+
"@quenty/inputobjectutils": "^4.6.0",
|
|
34
|
+
"@quenty/loader": "^10.4.0",
|
|
35
|
+
"@quenty/maid": "^3.3.0",
|
|
36
|
+
"@quenty/math": "^2.7.0",
|
|
37
|
+
"@quenty/qframe": "^10.4.0",
|
|
38
|
+
"@quenty/servicebag": "^11.5.0",
|
|
39
|
+
"@quenty/spring": "^10.4.0",
|
|
40
|
+
"@quenty/vector3utils": "^10.4.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@quenty/camerastoryutils": "10.4.0
|
|
43
|
+
"@quenty/camerastoryutils": "^10.4.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
|
|
49
49
|
}
|
|
@@ -345,10 +345,9 @@ function CameraControls:_handleGamepadRotateStart()
|
|
|
345
345
|
end
|
|
346
346
|
|
|
347
347
|
function CameraControls:Destroy()
|
|
348
|
-
self._gamepadRotateModel:Destroy()
|
|
349
|
-
|
|
350
348
|
self:Disable()
|
|
349
|
+
self._gamepadRotateModel:Destroy()
|
|
351
350
|
setmetatable(self, nil)
|
|
352
351
|
end
|
|
353
352
|
|
|
354
|
-
return CameraControls
|
|
353
|
+
return CameraControls
|