0 Members and 4 Guests are viewing this topic.
Maybe have a number (not sure if all of them are taken already)
This is more like a feature retainment request than a feature request, but you could you keep the single-argument Output(?Even if 2-argument with constants is automatically optimized, it could still be useful with certain expressions involving variables.While I can't think of a good example off the top of my head, I'm sure one exists
3 level grayscale compact masking for 8x8 sprites. I used this in Pyoro, it basically allows you to use the unused bit combination as an extra transparency layer so you can have automatic grayscale masking without needing an extra mask layer. 00=transparent 01=white 10=gray 11=black16x16 aligned sprite drawing. Its a super fast and small way to draw 16x16 sprites when they're aligned horizontally and also using a more convenient array for the sprite data than trying to make 4 8x8 sprites.Unclipped unsafe 8x8 sprite drawing. Speeds up sprite drawing significantly for sprites that are always drawn completely on-screen for applications where speed really matters. But it would crash/corrupt data for sprites drawn partly or fully off-screenWould anyone be interested in any of these? I would probably use the Plot1() - Plot3() tokens.
Well the first one for sure I will add...I guess I'll keep the single line coordinate method for Output() and Text()...I've got archive reading completed...
3rd one seems like a bad idea.