diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2015-07-30 23:19:36 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2015-07-30 23:19:36 +0300 |
| commit | b4783ab327f290c4e4441a26a2ec2edfdb721175 (patch) | |
| tree | a1a6a25297c55afa2d60c2836fa7f6d676d66fd8 /js-platformer/src/gameobject.js | |
| parent | b10bd1c1070bee72732004690964c800eca71d91 (diff) | |
Add js-platformer.
Diffstat (limited to 'js-platformer/src/gameobject.js')
| -rw-r--r-- | js-platformer/src/gameobject.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/js-platformer/src/gameobject.js b/js-platformer/src/gameobject.js new file mode 100644 index 0000000..c7e47b4 --- /dev/null +++ b/js-platformer/src/gameobject.js @@ -0,0 +1,28 @@ +var GameObjectPrototype = function() { + this.texture = PIXI.Texture.fromImage("res/red.png"); + this.sprite = new PIXI.Sprite(this.texture); + + this.initPosition = function() { + this.sprite.anchor.x = 0.5; + this.sprite.anchor.y = 0.5; + + this.sprite.position.x = settings.STAGE_WIDTH * 0.5; + this.sprite.position.y = settings.STAGE_HEIGHT * 0.5; + } + + return this; +} + +var GameObject = function() { + + this.initPosition(); + Engine.instance.addGameObject(this); + + this.update = function() { + + } + + return this; +} + +GameObject.prototype = new GameObjectPrototype();
\ No newline at end of file |
