@quenty/highlight 10.25.2 → 10.25.3
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,14 @@
|
|
|
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.25.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.25.2...@quenty/highlight@10.25.3) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/highlight
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [10.25.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/highlight@10.25.1...@quenty/highlight@10.25.2) (2025-11-22)
|
|
7
15
|
|
|
8
16
|
**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": "10.25.
|
|
3
|
+
"version": "10.25.3",
|
|
4
4
|
"description": "Animated highlight system for the Roblox highlight object",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,24 +27,24 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@quenty/baseobject": "^10.9.0",
|
|
30
|
-
"@quenty/basicpane": "^13.21.
|
|
31
|
-
"@quenty/blend": "^12.22.
|
|
30
|
+
"@quenty/basicpane": "^13.21.3",
|
|
31
|
+
"@quenty/blend": "^12.22.3",
|
|
32
32
|
"@quenty/ducktype": "^5.9.0",
|
|
33
33
|
"@quenty/enumutils": "^3.4.2",
|
|
34
34
|
"@quenty/instanceutils": "^13.20.2",
|
|
35
35
|
"@quenty/loader": "^10.9.0",
|
|
36
36
|
"@quenty/maid": "^3.5.0",
|
|
37
37
|
"@quenty/math": "^2.7.3",
|
|
38
|
-
"@quenty/observablecollection": "^12.24.
|
|
38
|
+
"@quenty/observablecollection": "^12.24.3",
|
|
39
39
|
"@quenty/rx": "^13.20.0",
|
|
40
|
-
"@quenty/selectionutils": "^8.21.
|
|
40
|
+
"@quenty/selectionutils": "^8.21.3",
|
|
41
41
|
"@quenty/signal": "^7.11.1",
|
|
42
|
-
"@quenty/statestack": "^14.22.
|
|
42
|
+
"@quenty/statestack": "^14.22.3",
|
|
43
43
|
"@quenty/table": "^3.8.0",
|
|
44
|
-
"@quenty/valueobject": "^13.21.
|
|
44
|
+
"@quenty/valueobject": "^13.21.3"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
|
|
50
50
|
}
|
|
@@ -21,23 +21,25 @@ local AnimatedHighlight = setmetatable({}, BasicPane)
|
|
|
21
21
|
AnimatedHighlight.ClassName = "AnimatedHighlight"
|
|
22
22
|
AnimatedHighlight.__index = AnimatedHighlight
|
|
23
23
|
|
|
24
|
-
export type AnimatedHighlight =
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
24
|
+
export type AnimatedHighlight =
|
|
25
|
+
typeof(setmetatable(
|
|
26
|
+
{} :: {
|
|
27
|
+
-- Public
|
|
28
|
+
Gui: Highlight,
|
|
29
|
+
Destroying: Signal.Signal<()>,
|
|
30
|
+
|
|
31
|
+
-- Private
|
|
32
|
+
_adornee: ValueObject.ValueObject<Instance?>,
|
|
33
|
+
_highlightDepthMode: ValueObject.ValueObject<Enum.HighlightDepthMode>,
|
|
34
|
+
_fillColorSpring: SpringObject.SpringObject<Color3>,
|
|
35
|
+
_outlineColorSpring: SpringObject.SpringObject<Color3>,
|
|
36
|
+
_fillTransparencySpring: SpringObject.SpringObject<number>,
|
|
37
|
+
_outlineTransparencySpring: SpringObject.SpringObject<number>,
|
|
38
|
+
_percentVisible: SpringObject.SpringObject<number>,
|
|
39
|
+
},
|
|
40
|
+
{} :: typeof({ __index = AnimatedHighlight })
|
|
41
|
+
))
|
|
42
|
+
& BasicPane.BasicPane
|
|
41
43
|
|
|
42
44
|
function AnimatedHighlight.new(): AnimatedHighlight
|
|
43
45
|
local self: AnimatedHighlight = setmetatable(BasicPane.new() :: any, AnimatedHighlight)
|
|
@@ -17,13 +17,15 @@ local AnimatedHighlightGroup = setmetatable({}, BaseObject)
|
|
|
17
17
|
AnimatedHighlightGroup.ClassName = "AnimatedHighlightGroup"
|
|
18
18
|
AnimatedHighlightGroup.__index = AnimatedHighlightGroup
|
|
19
19
|
|
|
20
|
-
export type AnimatedHighlightGroup =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
export type AnimatedHighlightGroup =
|
|
21
|
+
typeof(setmetatable(
|
|
22
|
+
{} :: {
|
|
23
|
+
_defaultValues: AnimatedHighlightModel.AnimatedHighlightModel,
|
|
24
|
+
_highlightStacks: { [Instance]: AnimatedHighlightStack.AnimatedHighlightStack },
|
|
25
|
+
},
|
|
26
|
+
{} :: typeof({ __index = AnimatedHighlightGroup })
|
|
27
|
+
))
|
|
28
|
+
& BaseObject.BaseObject
|
|
27
29
|
|
|
28
30
|
function AnimatedHighlightGroup.new(): AnimatedHighlightGroup
|
|
29
31
|
local self: AnimatedHighlightGroup = setmetatable(BaseObject.new() :: any, AnimatedHighlightGroup)
|
|
@@ -166,7 +168,11 @@ function AnimatedHighlightGroup:_getOrCreateHighlightStackHandle(adornee, observ
|
|
|
166
168
|
return handle
|
|
167
169
|
end
|
|
168
170
|
|
|
169
|
-
function AnimatedHighlightGroup:HighlightWithTransferredProperties(
|
|
171
|
+
function AnimatedHighlightGroup:HighlightWithTransferredProperties(
|
|
172
|
+
fromAdornee: Instance,
|
|
173
|
+
toAdornee: Instance,
|
|
174
|
+
observeScore
|
|
175
|
+
)
|
|
170
176
|
assert(typeof(fromAdornee) == "Instance", "Bad fromAdornee")
|
|
171
177
|
assert(typeof(toAdornee) == "Instance", "Bad toAdornee")
|
|
172
178
|
|
|
@@ -15,21 +15,23 @@ local AnimatedHighlightModel = setmetatable({}, BaseObject)
|
|
|
15
15
|
AnimatedHighlightModel.ClassName = "AnimatedHighlightModel"
|
|
16
16
|
AnimatedHighlightModel.__index = AnimatedHighlightModel
|
|
17
17
|
|
|
18
|
-
export type AnimatedHighlightModel =
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
18
|
+
export type AnimatedHighlightModel =
|
|
19
|
+
typeof(setmetatable(
|
|
20
|
+
{} :: {
|
|
21
|
+
HighlightDepthMode: ValueObject.ValueObject<Enum.HighlightDepthMode?>,
|
|
22
|
+
FillColor: ValueObject.ValueObject<Color3?>,
|
|
23
|
+
OutlineColor: ValueObject.ValueObject<Color3?>,
|
|
24
|
+
FillTransparency: ValueObject.ValueObject<number?>,
|
|
25
|
+
OutlineTransparency: ValueObject.ValueObject<number?>,
|
|
26
|
+
Speed: ValueObject.ValueObject<number?>,
|
|
27
|
+
ColorSpeed: ValueObject.ValueObject<number?>,
|
|
28
|
+
TransparencySpeed: ValueObject.ValueObject<number?>,
|
|
29
|
+
FillSpeed: ValueObject.ValueObject<number?>,
|
|
30
|
+
Destroying: Signal.Signal<()>,
|
|
31
|
+
},
|
|
32
|
+
{} :: typeof({ __index = AnimatedHighlightModel })
|
|
33
|
+
))
|
|
34
|
+
& BaseObject.BaseObject
|
|
33
35
|
|
|
34
36
|
--[=[
|
|
35
37
|
Constructs a new data model for an animated highlight. Probably retrieve via an
|
|
@@ -20,21 +20,23 @@ local AnimatedHighlightStack = setmetatable({}, BaseObject)
|
|
|
20
20
|
AnimatedHighlightStack.ClassName = "AnimatedHighlightStack"
|
|
21
21
|
AnimatedHighlightStack.__index = AnimatedHighlightStack
|
|
22
22
|
|
|
23
|
-
export type AnimatedHighlightStack =
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
23
|
+
export type AnimatedHighlightStack =
|
|
24
|
+
typeof(setmetatable(
|
|
25
|
+
{} :: {
|
|
26
|
+
_adornee: Instance,
|
|
27
|
+
_defaultModelValues: AnimatedHighlightModel.AnimatedHighlightModel,
|
|
28
|
+
_list: any,
|
|
29
|
+
_currentModel: AnimatedHighlightModel.AnimatedHighlightModel,
|
|
30
|
+
_highlight: AnimatedHighlight.AnimatedHighlight,
|
|
31
|
+
_hasEntries: ValueObject.ValueObject<boolean>,
|
|
32
|
+
maid: Maid.Maid,
|
|
33
|
+
|
|
34
|
+
Done: Signal.Signal<()>,
|
|
35
|
+
Destroying: Signal.Signal<()>,
|
|
36
|
+
},
|
|
37
|
+
{} :: typeof({ __index = AnimatedHighlightStack })
|
|
38
|
+
))
|
|
39
|
+
& BaseObject.BaseObject
|
|
38
40
|
|
|
39
41
|
function AnimatedHighlightStack.new(adornee: Instance, defaultModelValues): AnimatedHighlightStack
|
|
40
42
|
local self: AnimatedHighlightStack = setmetatable(BaseObject.new() :: any, AnimatedHighlightStack)
|