luxeengine / alpha

alpha - deprecated 2015~2016. unrelated to the new engine! view the new engine here - https://luxeengine.com/
MIT License
565 stars 74 forks source link

Text; Modifying outline_color properties has no effect #348

Closed kevinresol closed 8 years ago

kevinresol commented 8 years ago

Works: text.outline_color = new Color(1,1,1,1); Doesn't work: text.outline_color.rgb(0xffffff);

Probably because the value isn't updated to the shader.

ruby0x1 commented 8 years ago

yea that's because outline_color is setter, you can use text.outline_color = text.outline_color.rgb(0xffffff); to call the setter for now