@quenty/animations 8.32.0 → 8.32.2

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,16 @@
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.32.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.32.1...@quenty/animations@8.32.2) (2026-05-30)
7
+
8
+ **Note:** Version bump only for package @quenty/animations
9
+
10
+ ## [8.32.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.32.0...@quenty/animations@8.32.1) (2026-05-29)
11
+
12
+ ### Bug Fixes
13
+
14
+ - Prevent playback on invalid targets ([fd1f826](https://github.com/Quenty/NevermoreEngine/commit/fd1f8262a21319dbab036ebd256f7af524b1ebe6))
15
+
6
16
  # [8.32.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/animations@8.31.2...@quenty/animations@8.32.0) (2026-05-29)
7
17
 
8
18
  **Note:** Version bump only for package @quenty/animations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/animations",
3
- "version": "8.32.0",
3
+ "version": "8.32.2",
4
4
  "description": "Utility methods for playing back animations on Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,22 +29,22 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "@quenty/baseobject": "10.13.0",
32
- "@quenty/enumutils": "3.4.5",
33
- "@quenty/humanoidanimatorutils": "3.2.3",
34
- "@quenty/instanceutils": "13.30.0",
32
+ "@quenty/enumutils": "3.4.6",
33
+ "@quenty/humanoidanimatorutils": "3.2.4",
34
+ "@quenty/instanceutils": "13.30.1",
35
35
  "@quenty/loader": "10.11.0",
36
36
  "@quenty/maid": "3.9.0",
37
37
  "@quenty/nevermore-test-runner": "1.4.0",
38
- "@quenty/promise": "10.18.0",
39
- "@quenty/promisemaid": "5.18.0",
38
+ "@quenty/promise": "10.18.1",
39
+ "@quenty/promisemaid": "5.18.1",
40
40
  "@quenty/rbxasset": "5.12.0",
41
- "@quenty/rx": "13.28.2",
42
- "@quenty/signal": "7.13.0",
43
- "@quenty/valueobject": "13.31.0",
41
+ "@quenty/rx": "13.28.3",
42
+ "@quenty/signal": "7.13.1",
43
+ "@quenty/valueobject": "13.31.1",
44
44
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "f4a374a0a294ee8900aa5cb68ab138b0acf3e0ae"
49
+ "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
50
50
  }
@@ -296,8 +296,8 @@ function AnimationSlotPlayer.Play(
296
296
  end)
297
297
 
298
298
  topMaid:GiveTask(self._animationTarget
299
- :ObserveBrio(function(target)
300
- return target ~= nil
299
+ :ObserveBrio(function(target: Instance?)
300
+ return (target ~= nil) and (target.Parent ~= nil)
301
301
  end)
302
302
  :Subscribe(function(brio)
303
303
  if brio:IsDead() then