RTT rendering order

If I have multiple RTTs and am trying to capture all of them each frame then release and repeat next frame, when I create them and add the Observables for their change of states does that happen sequentially in the order they are declared or is it based on which ones resolve first?

I guess Im wondering if the rtts are on a promise or if they are a part of the sequential calculations?

Their are rendered in a sequential order by the scene.

The order as you mentioned is the creation one

1 Like

Thank you.