@quenty/animations 8.22.2 → 8.22.3-canary.7b02662.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 +11 -0
- package/package.json +13 -13
- package/src/Shared/AnimationSlotPlayer.lua +3 -0
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
|
+
## [8.22.3-canary.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.22.2...@quenty/animations@8.22.3-canary.7b02662.0) (2025-12-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Small patches to nevermore libraries ([8bcecfa](https://github.com/Quenty/NevermoreEngine/commit/8bcecfadfd3ac856f1682757434c20b0247d66ea))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [8.22.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.22.1...@quenty/animations@8.22.2) (2025-11-22)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/animations",
|
|
3
|
-
"version": "8.22.
|
|
3
|
+
"version": "8.22.3-canary.7b02662.0",
|
|
4
4
|
"description": "Utility methods for playing back animations on Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "
|
|
29
|
-
"@quenty/enumutils": "
|
|
30
|
-
"@quenty/humanoidanimatorutils": "
|
|
31
|
-
"@quenty/loader": "
|
|
32
|
-
"@quenty/maid": "
|
|
33
|
-
"@quenty/promise": "
|
|
34
|
-
"@quenty/promisemaid": "
|
|
35
|
-
"@quenty/rbxasset": "
|
|
36
|
-
"@quenty/rx": "
|
|
37
|
-
"@quenty/signal": "
|
|
38
|
-
"@quenty/valueobject": "
|
|
28
|
+
"@quenty/baseobject": "10.9.0",
|
|
29
|
+
"@quenty/enumutils": "3.4.2",
|
|
30
|
+
"@quenty/humanoidanimatorutils": "3.2.0",
|
|
31
|
+
"@quenty/loader": "10.9.0",
|
|
32
|
+
"@quenty/maid": "3.5.0",
|
|
33
|
+
"@quenty/promise": "10.12.0",
|
|
34
|
+
"@quenty/promisemaid": "5.12.0",
|
|
35
|
+
"@quenty/rbxasset": "5.10.0",
|
|
36
|
+
"@quenty/rx": "13.20.0",
|
|
37
|
+
"@quenty/signal": "7.11.1",
|
|
38
|
+
"@quenty/valueobject": "13.21.2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
|
|
44
44
|
}
|
|
@@ -254,6 +254,9 @@ function AnimationSlotPlayer.Play(
|
|
|
254
254
|
priority = priority or self._defaultAnimationPriority.Value
|
|
255
255
|
weight = weight or 1 -- We need to explicitly adjust the weight here
|
|
256
256
|
|
|
257
|
+
-- Make sure we stop our last animation fully
|
|
258
|
+
self._maid._current = nil
|
|
259
|
+
|
|
257
260
|
local topMaid = Maid.new()
|
|
258
261
|
|
|
259
262
|
local animationId = RbxAssetUtils.toRbxAssetId(id)
|