Hello folks. I’ve been having fun playing with the my new Pixelblaze for the past few weeks now and at the point where I’d like to understand an observation that I don’t see explained anywhere here (or couldn’t find it anyway).
Code in the Render function seems to run a lot slower than code in the Before Render function. I’m curious why that is. I have moderately complex code in the Before Render function that runs lighting fast, but even simple code in the render function bogs down the frame rate pretty quickly. I would imagine that all the render function is doing is filling up an array(s) corresponding to each pixel and, in the background, the machine cycles through the arrays to light the pixels at the configured data rate. Such an array presumably can be created in the Before Render function and the array entries called using the index in the Render function, and that would run at a much higher frame rate for some reason. I’m curious what that reason is. Or, maybe, my eyes and brain are fooling me, and my observation is wrong.