@quenty/qframe 10.10.1-canary.542.7609692.0 → 10.10.2-canary.545.2374fb2.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 +12 -1
- package/package.json +6 -6
- package/src/Shared/QFrame.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
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
|
-
## [10.10.
|
|
6
|
+
## [10.10.2-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@10.10.1...@quenty/qframe@10.10.2-canary.545.2374fb2.0) (2025-04-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [10.10.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/qframe@10.10.0...@quenty/qframe@10.10.1) (2025-03-21)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/qframe
|
|
9
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/qframe",
|
|
3
|
-
"version": "10.10.
|
|
3
|
+
"version": "10.10.2-canary.545.2374fb2.0",
|
|
4
4
|
"description": "CFrame representation as a quaternion for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"AxisAngles"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/loader": "10.8.0"
|
|
30
|
+
"@quenty/loader": "10.8.1-canary.545.2374fb2.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@quenty/camerastoryutils": "10.10.
|
|
34
|
-
"@quenty/cubicspline": "10.8.0",
|
|
35
|
-
"@quenty/maid": "3.4.0"
|
|
33
|
+
"@quenty/camerastoryutils": "10.10.2-canary.545.2374fb2.0",
|
|
34
|
+
"@quenty/cubicspline": "10.8.1-canary.545.2374fb2.0",
|
|
35
|
+
"@quenty/maid": "3.4.1-canary.545.2374fb2.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
|
|
41
41
|
}
|
package/src/Shared/QFrame.lua
CHANGED
|
@@ -156,7 +156,7 @@ end
|
|
|
156
156
|
@param b number
|
|
157
157
|
@return QFrame
|
|
158
158
|
]=]
|
|
159
|
-
function QFrame.__pow(a: QFrame, b:
|
|
159
|
+
function QFrame.__pow(a: QFrame, b: number): QFrame
|
|
160
160
|
assert(QFrame.isQFrame(a) and type(b) == "number", "Bad a or b")
|
|
161
161
|
|
|
162
162
|
-- Center of mass agnostic power formula
|
|
@@ -209,7 +209,7 @@ end
|
|
|
209
209
|
@param b QFrame | number
|
|
210
210
|
@return QFrame
|
|
211
211
|
]=]
|
|
212
|
-
function QFrame.__mul(a, b)
|
|
212
|
+
function QFrame.__mul(a, b): QFrame
|
|
213
213
|
if type(a) == "number" and QFrame.isQFrame(b) then
|
|
214
214
|
return QFrame.new(a * b.x, a * b.y, a * b.z, a * b.W, a * b.X, a * b.Y, a * b.Z)
|
|
215
215
|
elseif QFrame.isQFrame(a) and type(b) == "number" then
|