2017-03-01 00:16:35 +00:00
|
|
|
var BitmapText = require('./BitmapText');
|
2017-03-08 22:36:53 +00:00
|
|
|
var FactoryContainer = require('../../FactoryContainer');
|
2017-03-01 00:16:35 +00:00
|
|
|
|
|
|
|
var BitmapTextFactory = {
|
|
|
|
|
|
|
|
KEY: 'bitmapText',
|
|
|
|
|
|
|
|
add: function (x, y, font, text, size, align)
|
|
|
|
{
|
2017-04-04 22:58:33 +00:00
|
|
|
return this.children.add(new BitmapText(this.state, x, y, font, text, size, align));
|
2017-03-01 00:16:35 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
make: function (x, y, font, text, size, align)
|
|
|
|
{
|
|
|
|
return new BitmapText(this.state, x, y, font, text, size, align);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = FactoryContainer.register(BitmapTextFactory);
|