Skip to main content

styles

February 20, 2019

styles

This object allows you to create, store, and use predefined styles for drawing text. These styles conform to Pixi's TextStyle class properties.

Using styles

styles.get(name: String)

Returns the specified style.

styles.get(name: String, true)

Returns a copy of the specified style. This copy then may be edited and used safely.

JavaScript
var multiline = styles.get('Label', true);
multiline.wordWrap = true;
multiline.wordWrapWidth = 320;
this.details = new PIXI.Text(this.info, multiline);

styles.get(name: String, opts: Object)

Creates a copy of the specified style, then extends it with a given object. This copy then may be edited and used safely.

JavaScript
var multiline = styles.get('Label', {
    wordWrap: true,
    wordWrapWidth: 320
});
this.details = new PIXI.Text(this.info, multiline);

Creating styles programmatically

styles.new(name, options)

Creates a new style with a given name. Options are the same as if you were creating a TextStyle.