@infinitestasis , I have some questions regarding the Neon project. I am generally new to coding, but I am improving. Regardless, is there any sorting algorithm for the sprites?
say I create 2 sprites: var game = neon.Parse(“v 0 0 0,v 5 0 0 ,db 0, db 1,s 0,s 1,”);
the sprites are right next to each other, but because of how I ordered the sprite declarations in the string, if I go to the left and turn the camera to face towards the sprites again, the sprite assigned to v 1 overlays the sprite assigned to v 0, even though v 0 is in front of v 1. Is there a mechanic I am missing, or is this something I would code myself?
Edit: this would only be for sprites obviously