About Store Forum Documentation Contact



Post Reply 
Drawing order of draw3d
Author Message
Pherael Offline
Member

Post: #1
Drawing order of draw3d
When I using draw3d bilboards are drawing in order of functions call. Is there any easy way to draw images in fixed order? Or I have to sort them manually?
04-17-2013 12:59 PM
Find all posts by this user Quote this message in a reply
fatcoder Offline
Member

Post: #2
RE: Drawing order of draw3d
Manually drawing blended geometry, such as particles and VI calls for example will draw immediately, in the order you call them. If you require a specific order and cannot call in the order you need, then it would be better to queue the calls up, sort them (by whatever you need, such as distance to camera for example) and then run through the queue calling draw in sorted order.
04-18-2013 01:47 AM
Find all posts by this user Quote this message in a reply
Pherael Offline
Member

Post: #3
RE: Drawing order of draw3d
Thank you, I was thinking that the way, but I wanted to be sure.
04-18-2013 03:28 PM
Find all posts by this user Quote this message in a reply
Post Reply