@quenty/soundplayer 7.23.2-canary.a3ac54d.0 → 7.23.3-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,7 +3,15 @@
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.23.2-canary.a3ac54d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundplayer@7.23.1...@quenty/soundplayer@7.23.2-canary.a3ac54d.0) (2025-11-22)
6
+ ## [7.23.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundplayer@7.23.2...@quenty/soundplayer@7.23.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/soundplayer
9
+
10
+
11
+
12
+
13
+
14
+ ## [7.23.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundplayer@7.23.1...@quenty/soundplayer@7.23.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/soundplayer
9
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/soundplayer",
3
- "version": "7.23.2-canary.a3ac54d.0",
3
+ "version": "7.23.3-canary.607f741.0",
4
4
  "description": "Sound playback helper",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,9 +27,9 @@
27
27
  "dependencies": {
28
28
  "@quenty/adorneeutils": "3.3.3",
29
29
  "@quenty/baseobject": "10.9.0",
30
- "@quenty/blend": "12.22.2-canary.a3ac54d.0",
31
- "@quenty/brio": "14.20.1-canary.a3ac54d.0",
32
- "@quenty/instanceutils": "13.20.2-canary.a3ac54d.0",
30
+ "@quenty/blend": "12.22.3-canary.607f741.0",
31
+ "@quenty/brio": "14.20.1",
32
+ "@quenty/instanceutils": "13.20.2",
33
33
  "@quenty/loader": "10.9.0",
34
34
  "@quenty/maid": "3.5.0",
35
35
  "@quenty/numberrangeutils": "3.1.1",
@@ -39,14 +39,14 @@
39
39
  "@quenty/rbxasset": "5.10.0",
40
40
  "@quenty/rx": "13.20.0",
41
41
  "@quenty/signal": "7.11.1",
42
- "@quenty/sounds": "10.13.0",
42
+ "@quenty/sounds": "10.13.1-canary.607f741.0",
43
43
  "@quenty/table": "3.8.0",
44
- "@quenty/transitionmodel": "7.23.2-canary.a3ac54d.0",
45
- "@quenty/valueobject": "13.21.2-canary.a3ac54d.0",
44
+ "@quenty/transitionmodel": "7.23.3-canary.607f741.0",
45
+ "@quenty/valueobject": "13.21.3-canary.607f741.0",
46
46
  "@quentystudios/t": "^3.0.0"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "a3ac54d43aafa1c37b0e8c9b6e7b20b3f3362742"
51
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
52
52
  }
@@ -26,23 +26,25 @@ local LoopedSoundPlayer = setmetatable({}, SpringTransitionModel)
26
26
  LoopedSoundPlayer.ClassName = "LoopedSoundPlayer"
27
27
  LoopedSoundPlayer.__index = LoopedSoundPlayer
28
28
 
29
- export type LoopedSoundPlayer = typeof(setmetatable(
30
- {} :: {
31
- _currentSoundLooped: Signal.Signal<()>,
32
- _currentSoundLoopedAfterDelay: Signal.Signal<()>,
33
- _bpm: ValueObject.ValueObject<number?>,
34
- _soundParent: ValueObject.ValueObject<Instance?>,
35
- _soundGroup: ValueObject.ValueObject<SoundGroup?>,
36
- _crossFadeTime: ValueObject.ValueObject<number>,
37
- _volumeMultiplier: ValueObject.ValueObject<number>,
38
- _doSyncSoundPlayback: ValueObject.ValueObject<boolean>,
39
- _currentActiveSound: ValueObject.ValueObject<Sound?>,
40
- _currentSoundId: ValueObject.ValueObject<(string | number)?>,
41
- _defaultScheduleOptions: SoundLoopScheduleUtils.SoundLoopSchedule,
42
- _currentLoopSchedule: ValueObject.ValueObject<SoundLoopScheduleUtils.SoundLoopSchedule>,
43
- },
44
- {} :: typeof({ __index = LoopedSoundPlayer })
45
- )) & SpringTransitionModel.SpringTransitionModel<number>
29
+ export type LoopedSoundPlayer =
30
+ typeof(setmetatable(
31
+ {} :: {
32
+ _currentSoundLooped: Signal.Signal<()>,
33
+ _currentSoundLoopedAfterDelay: Signal.Signal<()>,
34
+ _bpm: ValueObject.ValueObject<number?>,
35
+ _soundParent: ValueObject.ValueObject<Instance?>,
36
+ _soundGroup: ValueObject.ValueObject<SoundGroup?>,
37
+ _crossFadeTime: ValueObject.ValueObject<number>,
38
+ _volumeMultiplier: ValueObject.ValueObject<number>,
39
+ _doSyncSoundPlayback: ValueObject.ValueObject<boolean>,
40
+ _currentActiveSound: ValueObject.ValueObject<Sound?>,
41
+ _currentSoundId: ValueObject.ValueObject<(string | number)?>,
42
+ _defaultScheduleOptions: SoundLoopScheduleUtils.SoundLoopSchedule,
43
+ _currentLoopSchedule: ValueObject.ValueObject<SoundLoopScheduleUtils.SoundLoopSchedule>,
44
+ },
45
+ {} :: typeof({ __index = LoopedSoundPlayer })
46
+ ))
47
+ & SpringTransitionModel.SpringTransitionModel<number>
46
48
 
47
49
  function LoopedSoundPlayer.new(soundId: (string | number)?, soundParent: Instance?)
48
50
  assert(soundId == nil or SoundUtils.isConvertableToRbxAsset(soundId), "Bad soundId")