@quenty/animations 8.2.0 → 8.2.1-canary.468.ea8a226.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,22 @@
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.2.1-canary.468.ea8a226.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.2.0...@quenty/animations@8.2.1-canary.468.ea8a226.0) (2024-05-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix .package-lock.json replicating in packages ([75d0efe](https://github.com/Quenty/NevermoreEngine/commit/75d0efeef239f221d93352af71a5b3e930ec23c5))
12
+
13
+
14
+ ### Features
15
+
16
+ * Allow tracks to be set in the AnimationGroup ([b51619a](https://github.com/Quenty/NevermoreEngine/commit/b51619add82097b5bc7449a21a9fd202374cd7bb))
17
+
18
+
19
+
20
+
21
+
6
22
  # [8.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.1.0...@quenty/animations@8.2.0) (2024-04-27)
7
23
 
8
24
  **Note:** Version bump only for package @quenty/animations
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "animations",
3
+ "globIgnorePaths": [ "**/.package-lock.json" ],
3
4
  "tree": {
4
5
  "$path": "src"
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/animations",
3
- "version": "8.2.0",
3
+ "version": "8.2.1-canary.468.ea8a226.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": "^10.2.0",
29
- "@quenty/enumutils": "^3.1.0",
30
- "@quenty/humanoidanimatorutils": "^3.0.0",
31
- "@quenty/loader": "^10.2.0",
32
- "@quenty/maid": "^3.1.0",
33
- "@quenty/promise": "^10.2.0",
34
- "@quenty/promisemaid": "^5.2.0",
35
- "@quenty/rbxasset": "^5.2.0",
36
- "@quenty/rx": "^13.2.0",
37
- "@quenty/signal": "^7.2.0",
38
- "@quenty/valueobject": "^13.2.0"
28
+ "@quenty/baseobject": "10.2.1-canary.468.ea8a226.0",
29
+ "@quenty/enumutils": "3.1.1-canary.468.ea8a226.0",
30
+ "@quenty/humanoidanimatorutils": "3.0.1-canary.468.ea8a226.0",
31
+ "@quenty/loader": "10.2.1-canary.468.ea8a226.0",
32
+ "@quenty/maid": "3.1.1-canary.468.ea8a226.0",
33
+ "@quenty/promise": "10.2.1-canary.468.ea8a226.0",
34
+ "@quenty/promisemaid": "5.2.1-canary.468.ea8a226.0",
35
+ "@quenty/rbxasset": "5.2.1-canary.468.ea8a226.0",
36
+ "@quenty/rx": "13.2.1-canary.468.ea8a226.0",
37
+ "@quenty/signal": "7.2.1-canary.468.ea8a226.0",
38
+ "@quenty/valueobject": "13.2.1-canary.468.ea8a226.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "5c9eab1eac73f0d54953cca5017b7be968182f72"
43
+ "gitHead": "ea8a2260a364aaf6d6c246a93632b789935da134"
44
44
  }
@@ -21,7 +21,7 @@ AnimationTrackPlayer.__index = AnimationTrackPlayer
21
21
  all data is found.
22
22
 
23
23
  @param animationTarget Instance | Observable<Instance>
24
- @param animationId string | number
24
+ @param animationId string | number | nil
25
25
  @return AnimationTrackPlayer
26
26
  ]=]
27
27
  function AnimationTrackPlayer.new(animationTarget, animationId)