I want to have a button for my users to play around with post processing.
below is my code that attached to a button:
function set_postprocessing() {
API.getPostProcessing(
{
enable:true,
bloomEnable :true
},
function () {
console.log("set post processing")
});
}
I can see the log in my console, but nothing is activated.
is there something I miss out?