peptobeptoLvl 2
- Edited
- Windows
my plan for v2 is to compress the video to 25X25 pixels, lower the saturation so that its all black and white, and then map out each pixels color as either "b" for black and "w" for white. Then ill just write a loop to iterate through each pixel color and then draw it to the screen if its "B" and move 25 pixels to the right if its "w". every 25 iterations, the x coordinate for where to draw gets reset to 0 and the y coordinate increases by 1. This is by no means the most efficient way to do this but the canvas tool is relatively fast and by my testing it can handle moving up to 1000 squares at 60 frames a second so this should work better. Ill be able to add audio too!