ofxTextSuite icon indicating copy to clipboard operation
ofxTextSuite copied to clipboard

Text block alpha channel is not getting set

Open vsakson opened this issue 12 years ago • 0 comments

in drawing functions of ofxTextBlock class the value of alpha is not getting set, you probably forgot to set it in lines like: ofSetColor(words[currentWordID].color.r, words[currentWordID].color.g, words[currentWordID].color.b); I changed this line to ofSetColor(words[currentWordID].color.r, words[currentWordID].color.g, words[currentWordID].color.b, words[currentWordID].color.a); and it now works.

vsakson avatar Feb 14 '13 12:02 vsakson