An open API service indexing awesome lists of open source software.

https://github.com/brentstrandy/phaser-underline-text

Extends Phaser.Text to easily let you add underlines anywhere in your text
https://github.com/brentstrandy/phaser-underline-text

Last synced: 7 months ago
JSON representation

Extends Phaser.Text to easily let you add underlines anywhere in your text

Awesome Lists containing this project

README

          

# Phaser UnderlineText

## Features
- Keep all functionality of Phaser.Text object
- Add as many underlines as needed
- Works with variable font sizes
- Works with variable line spacing
- Works with word wrap

## Example
```
this.myTextObj = new UnderlineText(this.game, 84, 79, 'Hello World', { font: '18px Verdana', fill: '#000000' });
this.myTextObj.addUnderline(0, 4);

...

this.myTextObj.clearUnderlines();
this.myTextObj.addUnderline(10, 20);
this.myTextObj.addUnderline(22, 10);

```