Skip to main content

The Power of Pride Bundle 2026 — $10 PWYC Edition
On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits)

I've added some helper functions for setting your post processing properties in javascript to my itch.io page. Feel free to include them in your API upgrade.

I was unable to get any of the following post processing properties to work:

"Brightness"         float (0-1)
"Contrast"         float (0-1)
"Saturation"        float (0-1)
"Vibrance"        float (0-1)
"Tint"             color as vector3d(R,G,B)
"Hue"            float (0-1)
"Vig"            float (0-1)
"VigRadius"        float (0-1)
"VigColor"        color as vector3d(R,G,B)

Brightness through to Tint are all accessed when using tonemap - ie set  "ToneMapOn" to true;

Hue uses "HueOn" as true; and colored vignette uses "VigOn" as true;

Did you use these to test them before adjusting the sub properties ?

(1 edit)

I don't get an error for VigOn or ToneMapOn but they still does not work.
I get the following errors for the others:

ccbSetSceneNodeProperty: Vig invalid for: Scene
ccbSetSceneNodeProperty: VigColor invalid for: Scene
ccbSetSceneNodeProperty: VigRadius invalid for: Scene
ccbSetSceneNodeProperty: Brightness invalid for: Scene
ccbSetSceneNodeProperty: Contrast invalid for: Scene
etc..