8 lines
307 B
JavaScript
8 lines
307 B
JavaScript
game.createWordBigBlue = () => {
|
|
const wordBigBlue = game.Entity();
|
|
wordBigBlue.addComponent(game.components.LoadPriority({priority: 3}));
|
|
wordBigBlue.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100}));
|
|
wordBigBlue.sprite = game.sprites.wordBigBlue;
|
|
return wordBigBlue;
|
|
}
|