@quenty/camera 9.1.0 → 9.1.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
+ ## [9.1.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@9.1.0...@quenty/camera@9.1.1) (2022-10-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * CameraStack ends profile correctly if disabled ([cdca1bd](https://github.com/Quenty/NevermoreEngine/commit/cdca1bdb4dfcc7da576687114d2343568db131ab))
12
+
13
+
14
+
15
+
16
+
6
17
  # [9.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@9.0.0...@quenty/camera@9.1.0) (2022-10-11)
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": "9.1.0",
3
+ "version": "9.1.1",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,7 +25,7 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/acceltween": "^2.2.0",
28
+ "@quenty/acceltween": "^2.2.1",
29
29
  "@quenty/baseobject": "^6.0.0",
30
30
  "@quenty/cframeutils": "^5.0.0",
31
31
  "@quenty/cubicspline": "^6.0.0",
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "69c2153865684748d0a8d6806f1ff999685c2e55"
46
+ "gitHead": "5fc8df6d4a62c0c774ebc78b275898f7f383935b"
47
47
  }
@@ -46,9 +46,10 @@ function CameraStackService:Init(serviceBag)
46
46
  self:Add(self._defaultCamera)
47
47
 
48
48
  RunService:BindToRenderStep("CameraStackUpdateInternal" .. self._key, Enum.RenderPriority.Camera.Value + 75, function()
49
- debug.profilebegin("CameraStackUpdate")
49
+ debug.profilebegin("camerastack")
50
50
 
51
51
  if next(self._disabledSet) then
52
+ debug.profileend()
52
53
  return
53
54
  end
54
55