I’m using a textnode in the 3d world (attached to render) and I can’t get a correct background color.
self.text = TextNode('node')
self.text.setText("root")
self.text.setTextColor(myColor.Brown)
self.text.setCardColor(myColor.Red)
self.text.setCardAsMargin(0, 0, 0, 0)
self.text.setAlign(TextNode.ACenter)
A text node is created but the background color is over the text color so I can’t read the text. I tried without the “Card” and I get a correct text with a transparent background.
How can I use a background color ?