add Text.Matrix and Text.ColorMask

This commit is contained in:
faiface 2017-05-09 16:46:11 +02:00
parent 3ffbbb9cda
commit feb12a1c7e
1 changed files with 10 additions and 0 deletions

View File

@ -152,6 +152,11 @@ func (txt *Text) SetMatrix(m pixel.Matrix) {
} }
} }
// Matrix returns the current Text's matrix.
func (txt *Text) Matrix() pixel.Matrix {
return txt.mat
}
// SetColorMask sets a color by which the text will be masked before drawingto another Target. // SetColorMask sets a color by which the text will be masked before drawingto another Target.
func (txt *Text) SetColorMask(c color.Color) { func (txt *Text) SetColorMask(c color.Color) {
rgba := pixel.ToRGBA(c) rgba := pixel.ToRGBA(c)
@ -161,6 +166,11 @@ func (txt *Text) SetColorMask(c color.Color) {
} }
} }
// ColorMask returns the current Text's color mask.
func (txt *Text) ColorMask() pixel.RGBA {
return txt.col
}
// Bounds returns the bounding box of the text currently written to the Text excluding whitespace. // Bounds returns the bounding box of the text currently written to the Text excluding whitespace.
// //
// If the Text is empty, a zero rectangle is returned. // If the Text is empty, a zero rectangle is returned.