Img and Txt Positions

Not much of a question, but how can I make a TextNode show over another one without getting into Overlays?

This is easy with Images, you set the Y value as in

pos=(-0.2, -1, 0.2).

That -1 will make that Image appear before Images with Positive Y values.

I wish it was that simple with TextNodes, but they only seem to take two arguments for pos and nothing for depth ordering.

I’m using render2d, because I need things to stay put when and if the window is resized (which aspect2d does not do).

Try

text.setBin('fixed', value)

panda3d.org/manual/index.php … nder_Order