@quenty/animations 8.22.3 → 8.22.4-canary.607f741.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
|
+
## [8.22.4-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.22.3...@quenty/animations@8.22.4-canary.607f741.0) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/animations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [8.22.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.22.2...@quenty/animations@8.22.3) (2025-12-13)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/animations",
|
|
3
|
-
"version": "8.22.
|
|
3
|
+
"version": "8.22.4-canary.607f741.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.3-canary.607f741.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
|
|
44
44
|
}
|
|
@@ -22,17 +22,19 @@ local AnimationSlotPlayer = setmetatable({}, BaseObject)
|
|
|
22
22
|
AnimationSlotPlayer.ClassName = "AnimationSlotPlayer"
|
|
23
23
|
AnimationSlotPlayer.__index = AnimationSlotPlayer
|
|
24
24
|
|
|
25
|
-
export type AnimationSlotPlayer =
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
25
|
+
export type AnimationSlotPlayer =
|
|
26
|
+
typeof(setmetatable(
|
|
27
|
+
{} :: {
|
|
28
|
+
_maid: Maid.Maid,
|
|
29
|
+
_animationTarget: ValueObject.ValueObject<Instance>,
|
|
30
|
+
_defaultFadeTime: ValueObject.ValueObject<number>,
|
|
31
|
+
_defaultAnimationPriority: ValueObject.ValueObject<Enum.AnimationPriority>,
|
|
32
|
+
_currentAnimationTrackData: ValueObject.ValueObject<any>,
|
|
33
|
+
_currentAnimationId: ValueObject.ValueObject<string>,
|
|
34
|
+
},
|
|
35
|
+
{} :: typeof({ __index = AnimationSlotPlayer })
|
|
36
|
+
))
|
|
37
|
+
& BaseObject.BaseObject
|
|
36
38
|
|
|
37
39
|
--[=[
|
|
38
40
|
Creates a new AnimationSlotPlayer with a target to play the animation on.
|
|
@@ -17,19 +17,21 @@ local AnimationTrackPlayer = setmetatable({}, BaseObject)
|
|
|
17
17
|
AnimationTrackPlayer.ClassName = "AnimationTrackPlayer"
|
|
18
18
|
AnimationTrackPlayer.__index = AnimationTrackPlayer
|
|
19
19
|
|
|
20
|
-
export type AnimationTrackPlayer =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
20
|
+
export type AnimationTrackPlayer =
|
|
21
|
+
typeof(setmetatable(
|
|
22
|
+
{} :: {
|
|
23
|
+
-- Public
|
|
24
|
+
KeyframeReached: Signal.Signal<()>,
|
|
25
|
+
|
|
26
|
+
-- Private
|
|
27
|
+
_animationTarget: ValueObject.ValueObject<Instance>,
|
|
28
|
+
_trackId: ValueObject.ValueObject<string | number>,
|
|
29
|
+
_currentTrack: ValueObject.ValueObject<AnimationTrack?>,
|
|
30
|
+
_animationPriority: ValueObject.ValueObject<number>,
|
|
31
|
+
},
|
|
32
|
+
{} :: typeof({ __index = AnimationTrackPlayer })
|
|
33
|
+
))
|
|
34
|
+
& BaseObject.BaseObject
|
|
33
35
|
|
|
34
36
|
--[=[
|
|
35
37
|
Plays an animation track in the target. Async loads the track when
|
|
@@ -20,14 +20,16 @@ local StudioRigAnimator = setmetatable({}, BaseObject)
|
|
|
20
20
|
StudioRigAnimator.ClassName = "StudioRigAnimator"
|
|
21
21
|
StudioRigAnimator.__index = StudioRigAnimator
|
|
22
22
|
|
|
23
|
-
export type StudioRigAnimator =
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
23
|
+
export type StudioRigAnimator =
|
|
24
|
+
typeof(setmetatable(
|
|
25
|
+
{} :: {
|
|
26
|
+
_animator: Animator?,
|
|
27
|
+
_obj: Animator | Humanoid,
|
|
28
|
+
_lastTime: number,
|
|
29
|
+
},
|
|
30
|
+
{} :: typeof({ __index = StudioRigAnimator })
|
|
31
|
+
))
|
|
32
|
+
& BaseObject.BaseObject
|
|
31
33
|
|
|
32
34
|
--[=[
|
|
33
35
|
Constructs a new rig animator which will play the animations for the lifetime of the
|