Last active
January 3, 2023 06:45
-
-
Save triacontane/bcf455a757c6cdf573d7efb4bf320c49 to your computer and use it in GitHub Desktop.
現在のシーンにぼかしをかける
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 現在のシーンにぼかしをかける | |
| $gameVariables.setValue(1, SceneManager._scene.filters); | |
| SceneManager._scene.filters = [new PIXI.filters.BlurFilter()]; | |
| // もどす | |
| SceneManager._scene.filters = $gameVariables.value(1); | |
| $gameVariables.setValue(1, 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment