scscgit / TukeQuest

School project made in Java using libGDX for a game development course
Apache License 2.0
0 stars 2 forks source link

Fix order of displaying collectable items. #34

Closed scscgit closed 7 years ago

scscgit commented 7 years ago

Currently we have RenderLast tagging interface, but it is not enough, we need a way to define layers.

Player will always have to be displayed above everything.

Items must be placed on top of a platform, but have to be displayed in front of a platform which is located higher up in case they overlap.

scscgit commented 7 years ago

ActLast interface now provides similar functionality, only for act instead of render, so RenderLast could be modified in a similar fashion.

scscgit commented 7 years ago

This issue is important after all, there are more combinations than expected.