I N S R U C T I O N S Instructions are all included and shown throughout the program! N O T E S - T O - K N O W ✦ White or white-ish colours take the longest to generate, and slow down your computer, so please be sure to not use pictures with LOTS of white ✦ Black colours are the quickest colours to generate, but too much black doesn't look that good ✦ Avoid using pictures that are dark and aren't very bright and colourful because these dark colours tend to generate as black, especially if you're using a big pixel size ✦ The percentage will move from the bottom of the screen to above the middle of the screen once the percentage is over 50%. This is so to avoid colour detection collision, it's not a glitch or bug. ✦ Do NOT share any inappropriate or abusive pictures because this is AGAINST the Scratch Community Guidelines. Thanks!
Credit to @Awesomator8859 I just modified it to make it faster. EDIT: Pre-render estimate times now reflect the changes to the engine Maybe I should make my own GUI for this and put it on my test account. Maybe it would get as popular as the original? Although, I guess Scratch kind of comes down to luck (and enough skill to make a good project :( ) (@Awesomator8859 scroll down) == How it's faster == This remix has a number of changes to the original (well, the original original). The first thing I did was chopped up the task of checking each pixel, as Scratch seems to run slower if you try to do touching colour operations without letting it pause (I think). I also introduced 2 level colour caching: the first layer is the last colour, which it will always check first and the second is the recently used colours (up to 100). If it can't find any of those colours it will resort to the slower RGB colour detector but it will start at the last red value reduced depending on the contrast of red values on average between two adjacent pixels. If it still can't find the colour it finally resorts to the original RGB colour picker starting at red 0 (note that it has less work to do as a lot of it has already been checked). And if it still can't find the value, well done! You've managed to break it! (yay :P) if you are reading this I only changed the first sprite, if you look in their there are comments on the things I changed so if you want you can apply it to the original. (there aren't comments on everything now)