Why does the GUI text node disappear when the color is changed from the script? (SOLVED)

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)

2 Likes

Thanks