blob: d21e15c2eaf176fb6308611b64843a78ba6d7078 (
plain)
1
2
3
4
5
6
7
8
|
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.addComponent(game.components.Pushable({pushable: true}));
wordBigBlue.sprite = game.sprites.wordBigBlue;
return wordBigBlue;
}
|