summaryrefslogtreecommitdiffstats
path: root/js-platformer/src/gameobject.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-platformer/src/gameobject.js')
-rw-r--r--js-platformer/src/gameobject.js28
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