Dear paperJS fans,
I understand I can set the canvas background color via
var canvasLayer = document.getElementById("myCanvas");
canvasLayer.style.background = "black";
But Since I wanted to change the hue of this element over time I put this into my OnFrame function
//change hue slowly
canvasLayer.style.background.hue += 1;
But it seems paperJS can't access the hue like that (via background). But using fillColor(); won't color the canvas (which should work with .hue in the end).
Does someone have an idea, or do you want the full code? :o
Thanks and kind regards,
Cookie