@quenty/camera 9.16.0 → 9.17.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
+ # [9.17.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@9.16.0...@quenty/camera@9.17.0) (2023-06-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Assert speed set on CameraStateTweener is a number ([0cef9b5](https://github.com/Quenty/NevermoreEngine/commit/0cef9b552f3d3c795e9a6f854de1009af8b7f1fb))
12
+
13
+
14
+
15
+
16
+
6
17
  # [9.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@9.15.0...@quenty/camera@9.16.0) (2023-06-18)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camera",
3
- "version": "9.16.0",
3
+ "version": "9.17.0",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,14 +27,14 @@
27
27
  "dependencies": {
28
28
  "@quenty/acceltween": "^2.2.1",
29
29
  "@quenty/baseobject": "^6.2.1",
30
- "@quenty/cframeutils": "^5.2.0",
30
+ "@quenty/cframeutils": "^5.3.0",
31
31
  "@quenty/cubicspline": "^6.2.1",
32
32
  "@quenty/inputobjectutils": "^4.1.0",
33
33
  "@quenty/loader": "^6.2.1",
34
34
  "@quenty/maid": "^2.5.0",
35
35
  "@quenty/math": "^2.4.0",
36
36
  "@quenty/qframe": "^6.9.0",
37
- "@quenty/servicebag": "^6.7.0",
37
+ "@quenty/servicebag": "^6.8.0",
38
38
  "@quenty/spring": "^6.3.0"
39
39
  },
40
40
  "devDependencies": {
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "2e4b57d56175186261d4f80a334816e03d63f80e"
46
+ "gitHead": "5d8f00296517b2a1aff2db540728f5e689a0c3e3"
47
47
  }
@@ -152,6 +152,8 @@ end
152
152
  @return CameraStateTweener -- self
153
153
  ]=]
154
154
  function CameraStateTweener:SetSpeed(speed)
155
+ assert(type(speed) == "number", "Bad speed")
156
+
155
157
  self._fadeBetween.Speed = speed
156
158
 
157
159
  return self