This object allows to create, store and use predefined styles for drawing text. These styles conform to Pixi's TextStyle class properties.
Returns the specified style.
Returns a copy of the specified style. This copy then may be edited and used safely.
var multiline = ct.styles.get('Label', true);
multiline.wordWrap = true;
multiline.wordWrapWidth = 320;
this.details = new PIXI.Text(this.info, multiline);
Creates a copy of the specified style, then extends it with a given object. This copy then may be edited and used safely.
var multiline = ct.styles.get('Label', {
wordWrap: true,
wordWrapWidth: 320
});
this.details = new PIXI.Text(this.info, multiline);
Creates a new style with a given name. Options are the same as if you were creating a TextStyle.