@quenty/sounds 6.0.1 → 6.1.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
+ # [6.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@6.0.1...@quenty/sounds@6.1.0) (2023-01-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * RollOffMode defaults to InverseTapered for sounds ([83837ce](https://github.com/Quenty/NevermoreEngine/commit/83837ced3e0dcfa036e3d020466704a0d9f6b06f))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [6.0.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sounds@6.0.0...@quenty/sounds@6.0.1) (2022-11-04)
7
18
 
8
19
  **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": "6.0.1",
3
+ "version": "6.1.0",
4
4
  "description": "Utility functions involving sounds and their state",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,5 +32,5 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "8b9877c26a3fc753409a5114e56717837291279d"
35
+ "gitHead": "b2393f15774341318803f9bdd1377a4aa9d2fb0e"
36
36
  }
@@ -58,6 +58,7 @@ function SoundUtils.createSoundFromId(id: string | number): Sound
58
58
  local sound = Instance.new("Sound")
59
59
  sound.Name = ("Sound_%s"):format(soundId)
60
60
  sound.SoundId = soundId
61
+ sound.RollOffMode = Enum.RollOffMode.InverseTapered
61
62
  sound.Volume = 0.25
62
63
  sound.Archivable = false
63
64