@quenty/depthoffield 11.38.0 → 11.38.1
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 +4 -0
- package/package.json +11 -11
- package/src/Client/DepthOfFieldEffect.lua +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [11.38.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/depthoffield@11.38.0...@quenty/depthoffield@11.38.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/depthoffield
|
|
9
|
+
|
|
6
10
|
# [11.38.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/depthoffield@11.37.0...@quenty/depthoffield@11.38.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @quenty/depthoffield
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/depthoffield",
|
|
3
|
-
"version": "11.38.
|
|
3
|
+
"version": "11.38.1",
|
|
4
4
|
"description": "Depth of field service to allow multiple systems to write depth of field",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,23 +29,23 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/acceltween": "2.7.0",
|
|
32
|
-
"@quenty/attributeutils": "14.30.
|
|
32
|
+
"@quenty/attributeutils": "14.30.1",
|
|
33
33
|
"@quenty/baseobject": "10.13.0",
|
|
34
|
-
"@quenty/basicpane": "13.31.
|
|
35
|
-
"@quenty/blend": "12.36.
|
|
36
|
-
"@quenty/brio": "14.30.
|
|
37
|
-
"@quenty/instanceutils": "13.30.
|
|
34
|
+
"@quenty/basicpane": "13.31.1",
|
|
35
|
+
"@quenty/blend": "12.36.1",
|
|
36
|
+
"@quenty/brio": "14.30.1",
|
|
37
|
+
"@quenty/instanceutils": "13.30.1",
|
|
38
38
|
"@quenty/loader": "10.11.0",
|
|
39
39
|
"@quenty/maid": "3.9.0",
|
|
40
40
|
"@quenty/math": "2.7.5",
|
|
41
|
-
"@quenty/rx": "13.28.
|
|
42
|
-
"@quenty/signal": "7.13.
|
|
41
|
+
"@quenty/rx": "13.28.3",
|
|
42
|
+
"@quenty/signal": "7.13.1",
|
|
43
43
|
"@quenty/steputils": "3.6.3",
|
|
44
|
-
"@quenty/transitionmodel": "7.38.
|
|
45
|
-
"@quenty/valueobject": "13.31.
|
|
44
|
+
"@quenty/transitionmodel": "7.38.1",
|
|
45
|
+
"@quenty/valueobject": "13.31.1"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
51
51
|
}
|
|
@@ -82,7 +82,7 @@ end
|
|
|
82
82
|
--[=[
|
|
83
83
|
Sets the target depth of field distance
|
|
84
84
|
@param focusDistanceTarget number
|
|
85
|
-
@param doNotAnimate boolean
|
|
85
|
+
@param doNotAnimate boolean?
|
|
86
86
|
]=]
|
|
87
87
|
function DepthOfFieldEffect.SetFocusDistanceTarget(
|
|
88
88
|
self: DepthOfFieldEffect,
|
|
@@ -97,7 +97,7 @@ end
|
|
|
97
97
|
--[=[
|
|
98
98
|
Sets the target depth of field radius
|
|
99
99
|
@param inFocusRadiusTarget number
|
|
100
|
-
@param doNotAnimate boolean
|
|
100
|
+
@param doNotAnimate boolean?
|
|
101
101
|
]=]
|
|
102
102
|
function DepthOfFieldEffect.SetInFocusRadiusTarget(
|
|
103
103
|
self: DepthOfFieldEffect,
|
|
@@ -112,7 +112,7 @@ end
|
|
|
112
112
|
--[=[
|
|
113
113
|
Sets the near intensity target
|
|
114
114
|
@param nearIntensityTarget number
|
|
115
|
-
@param doNotAnimate boolean
|
|
115
|
+
@param doNotAnimate boolean?
|
|
116
116
|
]=]
|
|
117
117
|
function DepthOfFieldEffect.SetNearIntensityTarget(
|
|
118
118
|
self: DepthOfFieldEffect,
|
|
@@ -127,7 +127,7 @@ end
|
|
|
127
127
|
--[=[
|
|
128
128
|
Sets the far intensity target
|
|
129
129
|
@param farIntensityTarget number
|
|
130
|
-
@param doNotAnimate boolean
|
|
130
|
+
@param doNotAnimate boolean?
|
|
131
131
|
]=]
|
|
132
132
|
function DepthOfFieldEffect.SetFarIntensityTarget(
|
|
133
133
|
self: DepthOfFieldEffect,
|