Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Thanks for your patience!

I’ve uploaded a sample project to the itch.io page.
Could you please download the sample project and check if it works correctly on your side?

If it works in the sample but not in your project, then the issue is likely caused by a project-specific setting or plugin interaction. If it doesn’t work even in the sample, please let me know and share any console errors (press F8 → Console).

That will help me narrow it down quickly.

Thanks again!

Ok it works on the sample but how can I run it as a parallel that wouldn't work for me

Great — that means the plugin itself is working correctly 👍

The issue is likely because you are running the “Enable Filter” command inside a Parallel Process.

This plugin is designed to apply the filter once.
If you run the command every frame (which happens in a parallel event), it keeps resetting the filter and prevents it from displaying properly.

Instead, please try:

  1. Show Picture

  2. Wait 1 frame

  3. Run “Enable Filter” once

  4. Do not run it repeatedly

If you need it triggered from a parallel event, use a switch so the command only runs once, then turn the switch off.