2022-04-01 17:43:56 -06:00
|
|
|
game.createWordBigBlue = () => {
|
|
|
|
const wordBigBlue = game.Entity();
|
2022-04-04 18:30:11 -06:00
|
|
|
wordBigBlue.addComponent(game.components.LoadPriority({priority: 3}));
|
2022-04-01 17:43:56 -06:00
|
|
|
wordBigBlue.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100}));
|
2022-04-04 18:30:11 -06:00
|
|
|
wordBigBlue.sprite = game.sprites.wordBigBlue;
|
2022-04-01 17:43:56 -06:00
|
|
|
return wordBigBlue;
|
|
|
|
}
|