@quenty/animationgroup 10.9.0 → 10.9.1

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
+ ## [10.9.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animationgroup@10.9.0...@quenty/animationgroup@10.9.1) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/animationgroup
9
+
10
+
11
+
12
+
13
+
6
14
  # [10.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animationgroup@10.8.3...@quenty/animationgroup@10.9.0) (2025-05-10)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/animationgroup",
3
- "version": "10.9.0",
3
+ "version": "10.9.1",
4
4
  "description": "A group of weighted tracks that can be played back with weighted probability. The closest example to this is the idle animation that looks around at a 1:10 ratio when you're standing still in default Roblox animation script.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -34,5 +34,5 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
37
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
38
38
  }
@@ -17,13 +17,15 @@ local AnimationGroup = setmetatable({}, BaseObject)
17
17
  AnimationGroup.ClassName = "AnimationGroup"
18
18
  AnimationGroup.__index = AnimationGroup
19
19
 
20
- export type AnimationGroup = typeof(setmetatable(
21
- {} :: {
22
- _weightedTracks: { AnimationGroupUtils.WeightedTrack },
23
- _currentTrack: AnimationTrack?,
24
- },
25
- {} :: typeof({ __index = AnimationGroup })
26
- )) & BaseObject.BaseObject
20
+ export type AnimationGroup =
21
+ typeof(setmetatable(
22
+ {} :: {
23
+ _weightedTracks: { AnimationGroupUtils.WeightedTrack },
24
+ _currentTrack: AnimationTrack?,
25
+ },
26
+ {} :: typeof({ __index = AnimationGroup })
27
+ ))
28
+ & BaseObject.BaseObject
27
29
 
28
30
  --[=[
29
31
  @param weightedTracks { WeightedTrack }