0 Members and 2 Guests are viewing this topic.
I'll just go with pixel testing, I want to have a respectable accurance with collisions.
setPixel(screen,x,y, getPixel(bitmap, textureX % IMG_W, textureY % IMG_H));
Quote from: Matrefeytontias on January 09, 2013, 05:04:41 pmI'll just go with pixel testing, I want to have a respectable accurance with collisions.I'm not sure if that's a good idea, as pixel operations are never (on any platform) very fast
Quote from: hoffa on January 09, 2013, 05:15:28 pmQuote from: Matrefeytontias on January 09, 2013, 05:04:41 pmI'll just go with pixel testing, I want to have a respectable accurance with collisions.I'm not sure if that's a good idea, as pixel operations are never (on any platform) very fastExcept in some cases on the 83+ (in Axe and TI-BASIC). In TI-BASIC there isn't much difference over using matrices, but in Axe if you need accuracy it's the fastest way.