@quenty/camera 14.18.1 → 14.18.2-canary.531.760eab8.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,14 @@
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.2-canary.531.760eab8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.18.1...@quenty/camera@14.18.2-canary.531.760eab8.0) (2025-01-22)
7
+
8
+ **Note:** Version bump only for package @quenty/camera
9
+
10
+
11
+
12
+
13
+
6
14
  ## [14.18.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/camera@14.18.0...@quenty/camera@14.18.1) (2025-01-21)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/camera",
3
- "version": "14.18.1",
3
+ "version": "14.18.2-canary.531.760eab8.0",
4
4
  "description": "Quenty's camera system for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,25 +25,26 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/acceltween": "^2.5.0",
29
- "@quenty/baseobject": "^10.7.1",
30
- "@quenty/cframeutils": "^5.5.0",
31
- "@quenty/cubicspline": "^10.7.1",
32
- "@quenty/ducktype": "^5.7.1",
33
- "@quenty/inputobjectutils": "^4.16.0",
34
- "@quenty/loader": "^10.7.1",
35
- "@quenty/maid": "^3.4.0",
36
- "@quenty/math": "^2.7.0",
37
- "@quenty/qframe": "^10.9.0",
38
- "@quenty/servicebag": "^11.10.0",
39
- "@quenty/spring": "^10.7.1",
40
- "@quenty/vector3utils": "^10.7.1"
28
+ "@quenty/acceltween": "2.5.0",
29
+ "@quenty/baseobject": "10.7.1",
30
+ "@quenty/cframeutils": "5.5.0",
31
+ "@quenty/cubicspline": "10.7.1",
32
+ "@quenty/ducktype": "5.7.1",
33
+ "@quenty/inputobjectutils": "4.16.0",
34
+ "@quenty/loader": "10.7.1",
35
+ "@quenty/maid": "3.4.0",
36
+ "@quenty/math": "2.7.0",
37
+ "@quenty/qframe": "10.9.0",
38
+ "@quenty/servicebag": "11.10.0",
39
+ "@quenty/spring": "10.7.1",
40
+ "@quenty/valueobject": "13.15.0",
41
+ "@quenty/vector3utils": "10.7.1"
41
42
  },
42
43
  "devDependencies": {
43
- "@quenty/camerastoryutils": "^10.9.0"
44
+ "@quenty/camerastoryutils": "10.9.0"
44
45
  },
45
46
  "publishConfig": {
46
47
  "access": "public"
47
48
  },
48
- "gitHead": "95918baa61371e447f524181ecd6903d1f4444d7"
49
+ "gitHead": "760eab89580cb2ebf422457778c424fd3ab28f00"
49
50
  }
@@ -9,6 +9,7 @@ local require = require(script.Parent.loader).load(script)
9
9
  local AccelTween = require("AccelTween")
10
10
  local BaseObject = require("BaseObject")
11
11
  local CameraGamepadInputUtils = require("CameraGamepadInputUtils")
12
+ local ValueObject = require("ValueObject")
12
13
 
13
14
  local GamepadRotateModel = setmetatable({}, BaseObject)
14
15
  GamepadRotateModel.__index = GamepadRotateModel
@@ -24,9 +25,7 @@ function GamepadRotateModel.new()
24
25
  self._rampVelocityX = AccelTween.new(25)
25
26
  self._rampVelocityY = AccelTween.new(25)
26
27
 
27
- self.IsRotating = Instance.new("BoolValue")
28
- self.IsRotating.Value = false
29
- self._maid:GiveTask(self.IsRotating)
28
+ self.IsRotating = self._maid:Add(ValueObject.new(false, "boolean"))
30
29
 
31
30
  return self
32
31
  end