@quenty/soundplayer 7.25.1 → 7.26.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,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
+ # [7.26.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundplayer@7.25.1...@quenty/soundplayer@7.26.0) (2026-01-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * Sound utils suppose cloning from an instance ([4597475](https://github.com/Quenty/NevermoreEngine/commit/4597475cdadf6a7b6d81d1fa59c3a7af6736b27e))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [7.25.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundplayer@7.25.0...@quenty/soundplayer@7.25.1) (2026-01-05)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/soundplayer",
3
- "version": "7.25.1",
3
+ "version": "7.26.0",
4
4
  "description": "Sound playback helper",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -39,14 +39,14 @@
39
39
  "@quenty/rbxasset": "^5.10.1",
40
40
  "@quenty/rx": "^13.21.0",
41
41
  "@quenty/signal": "^7.11.3",
42
- "@quenty/sounds": "^10.14.4",
42
+ "@quenty/sounds": "^10.15.0",
43
43
  "@quenty/table": "^3.9.0",
44
- "@quenty/transitionmodel": "^7.24.1",
44
+ "@quenty/transitionmodel": "^7.25.0",
45
45
  "@quenty/valueobject": "^13.22.1",
46
46
  "@quentystudios/t": "^3.0.0"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "5232cd2c58ca0dcdf591dd8ae78995211da2f3e2"
51
+ "gitHead": "540aa2a77acbb6c9c5967fe4417400a903df2c2c"
52
52
  }
@@ -47,7 +47,7 @@ export type LoopedSoundPlayer =
47
47
  ))
48
48
  & SpringTransitionModel.SpringTransitionModel<number>
49
49
 
50
- function LoopedSoundPlayer.new(soundId: (string | number)?, soundParent: Instance?): LoopedSoundPlayer
50
+ function LoopedSoundPlayer.new(soundId: SoundUtils.SoundId?, soundParent: Instance?): LoopedSoundPlayer
51
51
  assert(soundId == nil or SoundUtils.isConvertableToRbxAsset(soundId), "Bad soundId")
52
52
 
53
53
  local self: LoopedSoundPlayer = setmetatable(SpringTransitionModel.new() :: any, LoopedSoundPlayer)