@quenty/highlight 2.5.0 → 2.6.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
+ # [2.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@2.5.0...@quenty/highlight@2.6.0) (2022-11-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * FIx default outline transparency being set ([dd886ce](https://github.com/Quenty/NevermoreEngine/commit/dd886ce266cdd5429a27fcc9d094d1f941b1a593))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@2.4.0...@quenty/highlight@2.5.0) (2022-11-19)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/highlight
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/highlight",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "description": "Animated highlight system for the Roblox highlight object",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "2114f42ae399a4417a3ebd4d35bf481690ca7923"
45
+ "gitHead": "91d080c93cc2c0fbd873bc4b0f77720b2add7ea8"
46
46
  }
@@ -73,7 +73,7 @@ end
73
73
  function AnimatedHighlightGroup:SetDefaultOutlineTransparency(outlineTransparency)
74
74
  assert(type(outlineTransparency) == "number", "Bad outlineTransparency")
75
75
 
76
- self._defaultFillTransparency.Value = outlineTransparency
76
+ self._defaultOutlineTransparency.Value = outlineTransparency
77
77
  end
78
78
 
79
79
  function AnimatedHighlightGroup:SetDefaultFillColor(color)