Update: CC - Snake FS - Entity Loaded (21g30t1e75.js) 1031 bytes modified

beta.r3js.org
-=yb4f310 2018-03-24 19:01:07 +01:00
parent eb9c75c196
commit 59246719c5
1 changed files with 22 additions and 0 deletions

View File

@ -143,6 +143,28 @@ this.imagePowerupSlow = GameLib.EntityManager.Instance.findComponentById('nhd62
this.imageHeart = GameLib.EntityManager.Instance.findComponentById('oa5xl4n05z');
this.imageHeartGrey = GameLib.EntityManager.Instance.findComponentById('bh4miaqzwe');
this.imagePauseButton = GameLib.EntityManager.Instance.findComponentById('x0ewaqg5fu');
this.imageSoundButton = GameLib.EntityManager.Instance.findComponentById('w8sppso1z4');
this.imageDownButton = GameLib.EntityManager.Instance.findComponentById('t0w8hmodl3');
this.imageUpButton = GameLib.EntityManager.Instance.findComponentById('4v63jgi7t5');
this.imageRightButton = GameLib.EntityManager.Instance.findComponentById('21o4zucc3c');
this.imageLeftButton = GameLib.EntityManager.Instance.findComponentById('qkq4gs682q');
GameLib.CustomCode.prototype.createButtonAlphas = function(image) {
var pixels = image.getPixelData();
image.alphas = [];
for (i = 0; i < pixels.length; i += 4) {
image.alphas.push(pixels[i + 3]);
}
}.bind(this)
this.createButtonAlphas(this.imagePauseButton);
this.createButtonAlphas(this.imageSoundButton);
this.createButtonAlphas(this.imageDownButton);
this.createButtonAlphas(this.imageUpButton);
this.createButtonAlphas(this.imageRightButton);
this.createButtonAlphas(this.imageLeftButton);
/**
* Other Objects (Scene)
*/