EntityOrder [last]

Blitz3D Forums/Blitz3D Programming/EntityOrder [last]

_PJ_(Posted 2003) [#1]
Is there a way (with a varying nmber of objects) to Always draw something last?

I have tried EntityOrder Sprite,999 but my sprite is still obscured by nearer objects. Unfortunately, I cannot move the sprite closer to camera as the antialiasing and resolution looks bad. The Sprite in the example is part of a HUDisplay.


Koriolis(Posted 2003) [#2]
The doc says positive values make the entity to be drawn BEFORE the ones with negative values. so what you want is
EntityOrder Sprite,-999


_PJ_(Posted 2003) [#3]
How strange. Well, thanks! I will give that a try.


----------------------

Worked a treat! Thanks!