Search found 2 matches

by Kitsune_Dev
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: 702

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...
by Kitsune_Dev
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: 702

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...