phaser/v3/src/gameobjects/text/TextStyle.js

24 lines
401 B
JavaScript
Raw Normal View History

2017-03-13 23:38:48 +00:00
var TextStyle = {
font: '20px Arial',
backgroundColor: null,
fill: '#000',
stroke: '#000',
2017-03-13 23:38:48 +00:00
strokeThickness: 0,
shadow: {
offsetX: 0,
offsetY: 0,
color: '#000',
blur: 0
},
2017-03-13 23:38:48 +00:00
align: 'left',
tabs: 0,
maxLines: 0,
wordWrap: 0,
bounds: {
horizontal: 'left',
vertical: 'top'
}
2017-03-13 23:38:48 +00:00
};
module.exports = TextStyle;