@quenty/soundgroup 1.25.4-canary.607f741.0 → 1.25.4-canary.7b02662.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,7 @@
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
- ## [1.25.4-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundgroup@1.25.3...@quenty/soundgroup@1.25.4-canary.607f741.0) (2025-12-28)
6
+ ## [1.25.4-canary.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/soundgroup@1.25.3...@quenty/soundgroup@1.25.4-canary.7b02662.0) (2025-12-13)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/soundgroup
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/soundgroup",
3
- "version": "1.25.4-canary.607f741.0",
3
+ "version": "1.25.4-canary.7b02662.0",
4
4
  "description": "Service and utility methods to working with sound groups and sounds in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,18 +27,18 @@
27
27
  "dependencies": {
28
28
  "@quenty/baseobject": "10.9.0",
29
29
  "@quenty/brio": "14.20.1",
30
- "@quenty/counter": "7.21.4-canary.607f741.0",
30
+ "@quenty/counter": "7.21.4-canary.7b02662.0",
31
31
  "@quenty/instanceutils": "13.20.2",
32
32
  "@quenty/loader": "10.9.0",
33
33
  "@quenty/maid": "3.5.0",
34
- "@quenty/observablecollection": "12.24.3-canary.607f741.0",
34
+ "@quenty/observablecollection": "12.24.2",
35
35
  "@quenty/rx": "13.20.0",
36
36
  "@quenty/signal": "7.11.1",
37
37
  "@quenty/table": "3.8.0",
38
- "@quenty/valueobject": "13.21.3-canary.607f741.0"
38
+ "@quenty/valueobject": "13.21.2"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
43
+ "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
44
44
  }
@@ -23,19 +23,17 @@ SoundEffectsList.__index = SoundEffectsList
23
23
 
24
24
  export type SoundEffectApplier = (SoundGroup | Sound) -> MaidTaskUtils.MaidTask?
25
25
 
26
- export type SoundEffectsList =
27
- typeof(setmetatable(
28
- {} :: {
29
- _effectList: ObservableList.ObservableList<SoundEffectApplier>,
30
- _appliedCount: Counter.Counter,
31
- _isActive: ValueObject.ValueObject<boolean>,
32
- _hasEffects: ValueObject.ValueObject<boolean>,
33
- IsActiveChanged: Signal.Signal<boolean>,
34
- HasEffects: () -> boolean,
35
- },
36
- {} :: typeof({ __index = SoundEffectsList })
37
- ))
38
- & BaseObject.BaseObject
26
+ export type SoundEffectsList = typeof(setmetatable(
27
+ {} :: {
28
+ _effectList: ObservableList.ObservableList<SoundEffectApplier>,
29
+ _appliedCount: Counter.Counter,
30
+ _isActive: ValueObject.ValueObject<boolean>,
31
+ _hasEffects: ValueObject.ValueObject<boolean>,
32
+ IsActiveChanged: Signal.Signal<boolean>,
33
+ HasEffects: () -> boolean,
34
+ },
35
+ {} :: typeof({ __index = SoundEffectsList })
36
+ )) & BaseObject.BaseObject
39
37
 
40
38
  function SoundEffectsList.new(): SoundEffectsList
41
39
  local self: SoundEffectsList = setmetatable(BaseObject.new() :: any, SoundEffectsList)
@@ -21,15 +21,13 @@ local SoundEffectsRegistry = setmetatable({}, BaseObject)
21
21
  SoundEffectsRegistry.ClassName = "SoundEffectsRegistry"
22
22
  SoundEffectsRegistry.__index = SoundEffectsRegistry
23
23
 
24
- export type SoundEffectsRegistry =
25
- typeof(setmetatable(
26
- {} :: {
27
- _pathToEffectList: ObservableMap.ObservableMap<string, SoundEffectsList.SoundEffectsList>,
28
- _activeEffectsPathSet: ObservableSet.ObservableSet<string>,
29
- },
30
- {} :: typeof({ __index = SoundEffectsRegistry })
31
- ))
32
- & BaseObject.BaseObject
24
+ export type SoundEffectsRegistry = typeof(setmetatable(
25
+ {} :: {
26
+ _pathToEffectList: ObservableMap.ObservableMap<string, SoundEffectsList.SoundEffectsList>,
27
+ _activeEffectsPathSet: ObservableSet.ObservableSet<string>,
28
+ },
29
+ {} :: typeof({ __index = SoundEffectsRegistry })
30
+ )) & BaseObject.BaseObject
33
31
 
34
32
  function SoundEffectsRegistry.new(): SoundEffectsRegistry
35
33
  local self: SoundEffectsRegistry = setmetatable(BaseObject.new() :: any, SoundEffectsRegistry)
@@ -18,15 +18,13 @@ local SoundGroupTracker = setmetatable({}, BaseObject)
18
18
  SoundGroupTracker.ClassName = "SoundGroupTracker"
19
19
  SoundGroupTracker.__index = SoundGroupTracker
20
20
 
21
- export type SoundGroupTracker =
22
- typeof(setmetatable(
23
- {} :: {
24
- _pathToSoundGroupList: ObservableMapList.ObservableMapList<string, SoundGroup>,
25
- _soundGroupToPath: ObservableMap.ObservableMap<SoundGroup, string>,
26
- },
27
- {} :: typeof({ __index = SoundGroupTracker })
28
- ))
29
- & BaseObject.BaseObject
21
+ export type SoundGroupTracker = typeof(setmetatable(
22
+ {} :: {
23
+ _pathToSoundGroupList: ObservableMapList.ObservableMapList<string, SoundGroup>,
24
+ _soundGroupToPath: ObservableMap.ObservableMap<SoundGroup, string>,
25
+ },
26
+ {} :: typeof({ __index = SoundGroupTracker })
27
+ )) & BaseObject.BaseObject
30
28
 
31
29
  function SoundGroupTracker.new(root): SoundGroupTracker
32
30
  local self: SoundGroupTracker = setmetatable(BaseObject.new() :: any, SoundGroupTracker)