1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-25 10:54:02 +02:00

enhance(frontend): マスクエフェクト (#16556)

* wip

* wip

* Update MkImageEffectorDialog.vue

* Update MkImageEffectorDialog.vue

* Update MkImageEffectorDialog.vue

* Update MkImageEffectorDialog.vue

* Update MkImageEffectorDialog.vue

* Update fillSquare.ts

* Update CHANGELOG.md

* Update fillSquare.ts
This commit is contained in:
syuilo
2025-09-17 18:38:56 +09:00
committed by GitHub
parent b231da7c7c
commit 8c413d01e6
6 changed files with 250 additions and 4 deletions

View File

@@ -18,6 +18,7 @@ import { FX_stripe } from './fxs/stripe.js';
import { FX_threshold } from './fxs/threshold.js';
import { FX_zoomLines } from './fxs/zoomLines.js';
import { FX_blockNoise } from './fxs/blockNoise.js';
import { FX_fillSquare } from './fxs/fillSquare.js';
import type { ImageEffectorFx } from './ImageEffector.js';
export const FXS = [
@@ -36,4 +37,5 @@ export const FXS = [
FX_chromaticAberration,
FX_tearing,
FX_blockNoise,
FX_fillSquare,
] as const satisfies ImageEffectorFx<string, any>[];