@quenty/sounds 10.21.1 → 10.23.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,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
+ # [10.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.22.0...@quenty/sounds@10.23.0) (2026-07-18)
7
+
8
+ **Note:** Version bump only for package @quenty/sounds
9
+
10
+ # [10.22.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.21.1...@quenty/sounds@10.22.0) (2026-07-15)
11
+
12
+ ### Bug Fixes
13
+
14
+ - Do not override sound volume when cloning from sound ([28ff010](https://github.com/Quenty/NevermoreEngine/commit/28ff01093b57338b13b64990aedf4a8c4d35c75f))
15
+
6
16
  ## [10.21.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@10.21.0...@quenty/sounds@10.21.1) (2026-05-30)
7
17
 
8
18
  **Note:** Version bump only for package @quenty/sounds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/sounds",
3
- "version": "10.21.1",
3
+ "version": "10.23.0",
4
4
  "description": "Utility functions involving sounds and their state",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,12 +31,12 @@
31
31
  "dependencies": {
32
32
  "@quenty/loader": "10.11.0",
33
33
  "@quenty/maid": "3.9.0",
34
- "@quenty/promise": "10.18.1",
35
- "@quenty/promisemaid": "5.18.1",
34
+ "@quenty/promise": "10.19.0",
35
+ "@quenty/promisemaid": "5.19.0",
36
36
  "@quenty/rbxasset": "5.12.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
41
+ "gitHead": "cbbb89635bfdcbf32f26a40422ac736292917cca"
42
42
  }
@@ -118,6 +118,8 @@ function SoundUtils.applyPropertiesFromId(sound: Sound, id: SoundId): ()
118
118
  if properties.Parent then
119
119
  sound.Parent = properties.Parent
120
120
  end
121
+ elseif typeof(id) == "Instance" and id:IsA("Sound") then
122
+ sound.Volume = id.Volume
121
123
  end
122
124
  end
123
125