@quenty/animations 8.19.0 → 8.19.1-canary.4ea661c.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 +7 -2
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.19.1-canary.4ea661c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.19.0...@quenty/animations@8.19.1-canary.4ea661c.0) (2025-08-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Stop playback faster ([7701ae1](https://github.com/Quenty/NevermoreEngine/commit/7701ae11254460a10af61b5cc970320fe087c5b4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [8.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.18.0...@quenty/animations@8.19.0) (2025-07-11)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/animations",
|
|
3
|
-
"version": "8.19.0",
|
|
3
|
+
"version": "8.19.1-canary.4ea661c.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.11.0",
|
|
34
|
+
"@quenty/promisemaid": "5.11.0",
|
|
35
|
+
"@quenty/rbxasset": "5.9.0",
|
|
36
|
+
"@quenty/rx": "13.18.1-canary.4ea661c.0",
|
|
37
|
+
"@quenty/signal": "7.11.1-canary.4ea661c.0",
|
|
38
|
+
"@quenty/valueobject": "13.18.1-canary.4ea661c.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "4ea661c3fb52b8a3843c7d879c98c1de8a733798"
|
|
44
44
|
}
|
|
@@ -61,7 +61,7 @@ end
|
|
|
61
61
|
@param defaultFadeTime number
|
|
62
62
|
]=]
|
|
63
63
|
function AnimationSlotPlayer.SetDefaultFadeTime(self: AnimationSlotPlayer, defaultFadeTime: number)
|
|
64
|
-
self._defaultFadeTime
|
|
64
|
+
return self._defaultFadeTime:Mount(defaultFadeTime)
|
|
65
65
|
end
|
|
66
66
|
|
|
67
67
|
--[=[
|
|
@@ -287,7 +287,12 @@ function AnimationSlotPlayer.Play(
|
|
|
287
287
|
end)
|
|
288
288
|
|
|
289
289
|
maid:GiveTask(function()
|
|
290
|
-
|
|
290
|
+
local stopFadeTime = fadeTime or self._defaultFadeTime.Value
|
|
291
|
+
track:AdjustWeight(0, stopFadeTime)
|
|
292
|
+
|
|
293
|
+
if stopFadeTime == 0 then
|
|
294
|
+
track:Stop(stopFadeTime)
|
|
295
|
+
end
|
|
291
296
|
end)
|
|
292
297
|
else
|
|
293
298
|
warn("[AnimationSlotPlayer] - Failed to get animation to play")
|