Skip to main content

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

Loving it so far. I did notice a slight mistake in the FX_HueShift function that I wanted to mention. 

It hard-codes hue to 0, so that it doesn't matter what I enter in the arguments, it won't change the hue:

settings = {

enabled : enabled,

hue : 0,

saturation : saturation,

preserve_luminance : preserve_luminance,

};

I had to manually change it to:


settings = {

enabled : enabled,

hue : hue,

saturation : saturation,

preserve_luminance : preserve_luminance,

};


Maybe it's me who was using this incorrectly somehow, but that's how I got that function to work. :-) 


Anyway, thanks for making this wonderful set of FX. 

Hello! I'm glad you're enjoying PPFX :D, Thanks for the kind words!

I think this is from an old version? At least in the current unreleased version (v5.0), it's there. I may have fixed this a long time ago I think 🤔, but I'm still going to release version 5.0 in some time.