Search found 2 matches
- Sat Mar 30, 2024 8:49 pm
- Forum: Support and Development
- Topic: How to force draw an image on top of another image?
- Replies: 6
- Views: 2328
Re: How to force draw an image on top of another image?
Images appear back-to-front in the order they're drawn - however the pairs iterator function doesn't have a defined order, so you can't rely on it for things that should be ordered. Using an array and iterating with ipairs is the usual way to do it instead. thank you for the information, that's act...
- Sat Mar 30, 2024 9:54 am
- Forum: Support and Development
- Topic: How to force draw an image on top of another image?
- Replies: 6
- Views: 2328
How to force draw an image on top of another image?
Hi, I'm very new to Love2D, just started the other night, I ran into a problem with rendering images specifically with rendering images on top of another, currently my game seems buggy when there's a not of images on the screen because the render order changes so I was wondering if it is possible to...