public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

MV Implementation of Color Map Filter with Pixi Filter Controller

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: MV Implementation of Color Map Filter with Pixi Filter Controller
  • Original author: Karbonic
  • Original date: April 10, 2021
  • Source thread: https://forums.rpgmakerweb.com/threads/implementation-of-color-map-filter-with-pixi-filter-controller.135362/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > Javascript/Plugin Support

Summary

Hello! Right now I'm trying to make a custom script to run Pixi.Filters.ColorMapFilter using Tsukimi-Neko's Pixi Filter Controller. Following the guide in that thread, I have made the following script to attempt to run Color Map Filter. JavaScript:

Archived First Post

Hello!
Right now I'm trying to make a custom script to run Pixi.Filters.ColorMapFilter using Tsukimi-Neko's Pixi Filter Controller.
Following the guide in that thread, I have made the following script to attempt to run Color Map Filter.
JavaScript:
var newFilterName = "colormap";
Filter_Controller.filterNameMap[newFilterName]        = PIXI.filters.ColorMapFilter;
Filter_Controller.defaultFilterParam[newFilterName]   = [1,1];


let texture1 = ImageManager.loadSystem('ColorMap');

Filter_Controller.updateFilterHandler[newFilterName]  = function(filter, param) {
        filter.colorMap = [texture1];
        filter.nearest = [param[1]];
        filter.mix  = [param[2]];
};

However, when I attempt to call on the script function, nothing happens.
Converting texture1 into a sprite causes the entire screen to become black, but it does at least cause something to happen.
What am I doing wrong here? I would appreciate any help you can give!

I look forward to hearing from you!

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download
Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#039#rpg-maker-archive#js-support

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar