Skip to content

Commit aa7f4d7

Browse files
Opt Shape out of auto filter focus, to preserve stroke around the edges.
1 parent 2601359 commit aa7f4d7

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

changelog/4.0/CHANGELOG-v4.0-beta-7.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ The new system fixes many issues with nested transforms, filters, and other uses
3131
- Add creation time to `SpriteGPULayer` members.
3232
- Add documentation for writing a `Extern#render` function.
3333
- `TilemapLayer` and `TilemapGPULayer` now support a parent matrix during rendering.
34+
- `Shape` now sets `filtersFocusContext = true` by default, to prevent clipping stroke off at the edges.
3435

3536
## Fixes and Tweaks
3637

src/gameobjects/shape/Shape.js

+6
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,12 @@ var Shape = new Class({
209209
*/
210210
this.height = 0;
211211

212+
if (this.enableFilters)
213+
{
214+
// Prevent Shape stroke from being cut off in filters.
215+
this.filtersFocusContext = true;
216+
}
217+
212218
this.initRenderNodes(this._defaultRenderNodesMap);
213219
},
214220

0 commit comments

Comments
 (0)