I noticed the GUI text node disappears when i change the color using gui.set_color(). Am I missing something or is this a bug ?
gui.set_color(node, vmath.vector3(250, 0, 25))
I noticed the GUI text node disappears when i change the color using gui.set_color(). Am I missing something or is this a bug ?
gui.set_color(node, vmath.vector3(250, 0, 25))
You need to be using vmath.vector4(R,G,B, Alpha)
Thanks