Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
FogNetwork
GitHub Repository: FogNetwork/Tsunami
Path: blob/main/public/games/files/space-invaders/assets/javascript/module/Background.js
1520 views
1
/**
2
* Created by stryker on 2014.03.05..
3
*/
4
define(function(){
5
6
//Private variables
7
var _game = null,
8
_starfield = null;
9
10
return{
11
init: function(game,level,mode){
12
_game = game;
13
},
14
preload: function(){
15
_game.load.image('starfield', 'assets/img/starfield.png');
16
},
17
create: function(){
18
_starfield = _game.add.tileSprite(0, 0,800,600, 'starfield');
19
},
20
update: function(){
21
_starfield.tilePosition.y +=2;
22
}
23
24
}
25
});
26