123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766 |
- const game = {
- audio: {}, lang: {},
- image: {}, sprite: {},
- mediaTypes: ['lang', 'audio', 'image', 'sprite'],
- loadedMedia: [],
- isLoaded: [],
-
- load: {
- lang: function (url) {
- game.isLoaded['lang'] = false;
- game.loadedMedia['lang'] = 0;
- game.lang = {};
- const init = { mode: "same-origin" };
- fetch(url, init)
- .then(function (response) {
- return response.text();
- })
- .then(function (text) {
- let msg = text.split("\n");
- msg.forEach(cur => {
- try {
- let msg = cur.split("=");
- game.lang[msg[0].trim()] = msg[1].trim();
- } catch (Error) { if (debugMode) console.log("Sintax error fixed"); }
- game.load._informMediaIsLoaded(msg.length - 1, 'lang');
- });
- });
- },
- audio: function (urls) {
- game.isLoaded['audio'] = false;
- game.loadedMedia['audio'] = 0;
- urls = this._getNotLoadedUrls(urls, game.audio);
- if (urls.length == 0) {
- game.load._informMediaIsLoaded(0, 'audio');
- } else {
- const init = { mode: "same-origin" };
- urls.forEach(cur => {
- fetch(cur[1][1], init)
- .then(response => response.blob())
- .then(function (myBlob) {
- game.audio[cur[0]] = new Audio(URL.createObjectURL(myBlob));
- game.load._informMediaIsLoaded(urls.length - 1, 'audio');
- });
- });
- }
- },
- image: function (urls) {
- game.isLoaded['image'] = false;
- game.loadedMedia['image'] = 0;
- urls = this._getNotLoadedUrls(urls, game.image);
- if (urls.length == 0) {
- game.load._informMediaIsLoaded(0, 'image');
- } else {
- urls.forEach(cur => {
- const img = new Image();
- img.onload = () => {
- game.image[cur[0]] = img;
- game.load._informMediaIsLoaded(urls.length - 1, 'image');
- }
- img.src = cur[1];
- });
- }
- },
- sprite: function (urls) {
- game.isLoaded['sprite'] = false;
- game.loadedMedia['sprite'] = 0;
- urls = this._getNotLoadedUrls(urls, game.sprite);
- if (urls.length == 0) {
- game.load._informMediaIsLoaded(0, 'sprite');
- } else {
- urls.forEach(cur => {
- const img = new Image();
- img.onload = () => {
- game.sprite[cur[0]] = img;
- game.load._informMediaIsLoaded(urls.length - 1, 'sprite');
- }
- img.src = cur[1];
- img.frames = cur[2];
- });
- }
- },
-
- _getNotLoadedUrls: function (urls, media) {
- const newUrls = [];
- urls.forEach(cur => { if (media[cur[0]] == undefined) newUrls.push(cur); });
- return newUrls;
- },
- _informMediaIsLoaded: function (last, type) {
- if (game.loadedMedia[type] == last) {
- game.isLoaded[type] = true;
- game.load._isPreloadDone(type);
- }
- game.loadedMedia[type]++;
- },
-
- _isPreloadDone: function (type) {
- let flag = true;
- for (let i in game.mediaTypes) {
-
- if (game.isLoaded[game.mediaTypes[i]] == false) {
- flag = false;
- break;
- }
- }
-
- if (flag) {
- game.isLoaded = [];
- game.loadedMedia[type] = 0;
- self.create();
- }
- }
- },
-
- add: {
- default : {
-
- x: 0,
- y: 0,
- _xWithAnchor: 0,
- _yWithAnchor: 0,
- xAnchor: 0,
- yAnchor: 0,
- shadow : false,
- shadowColor : "#0075c5",
- shadowBlur : 20,
- alpha: 1,
-
- scale: 1,
-
- font: '14px Arial,sans-serif',
- fill: '#000',
- align: 'center',
-
- width: 50,
- height: 50,
- lineColor: "#000",
- lineWidth: 1,
- fillColor: 0,
-
- diameter: 50,
- anticlockwise: false,
- },
-
-
-
- image: function (x, y, img, scale, alpha) {
- if (x == undefined || y == undefined || img == undefined) console.error("Game error: parameters missing");
- else if (game.image[img] == undefined) console.error("Game error: image not found in cache: " + img);
- else {
- const med = {
- typeOfMedia: 'image',
- name: img,
- x: x || game.add.default.x,
- y: y || game.add.default.y,
- _xWithAnchor: x || game.add.default._xWithAnchor,
- _yWithAnchor: y || game.add.default._yWithAnchor,
- xAnchor: game.add.default.xAnchor,
- yAnchor: game.add.default.yAnchor,
- shadow : game.add.default.shadow,
- shadowColor : game.add.default.shadowColor,
- shadowBlur : game.add.default.shadowBlur,
- alpha: (alpha != undefined) ? alpha : game.add.default.alpha,
- scale: scale || game.add.default.scale,
- width: game.image[img].width,
- height: game.image[img].height,
- anchor: function (xAnchor, yAnchor) {
- this.xAnchor = xAnchor;
- this.yAnchor = yAnchor;
- },
- get xWithAnchor() { return this.x - (this.width * this.scale * this.xAnchor); },
- get yWithAnchor() { return this.y - (this.height * this.scale * this.yAnchor); }
- };
- game.render.queue.push(med);
- return med;
- }
- },
-
-
-
-
- sprite: function (x, y, img, curFrame, scale, alpha) {
- if (x == undefined || y == undefined || img == undefined) console.error("Game error: parameters missing");
- else if (game.sprite[img] == undefined) console.error("Game error: sprite not found in cache: " + img);
- else {
- const med = {
- typeOfMedia: 'sprite',
- name: img,
- x: x || game.add.default.x,
- y: y || game.add.default.y,
- _xWithAnchor: x || game.add.default._xWithAnchor,
- _yWithAnchor: y || game.add.default._yWithAnchor,
- xAnchor: game.add.default.xAnchor,
- yAnchor: game.add.default.yAnchor,
- shadow : game.add.default.shadow,
- shadowColor : game.add.default.shadowColor,
- shadowBlur : game.add.default.shadowBlur,
- alpha: (alpha != undefined) ? alpha : game.add.default.alpha,
- scale: scale || game.add.default.scale,
- width: game.sprite[img].width / game.sprite[img].frames,
- height: game.sprite[img].height,
-
- curFrame: curFrame || 0,
- anchor: function (xAnchor, yAnchor) {
- this.xAnchor = xAnchor;
- this.yAnchor = yAnchor;
- },
- get xWithAnchor() { return this.x - (this.width * this.scale * this.xAnchor); },
- get yWithAnchor() { return this.y - (this.height * this.scale * this.yAnchor); }
- };
- game.render.queue.push(med);
- return med;
- }
- },
-
-
- text: function (x, y, text, style, align) {
- if (x == undefined || y == undefined || text == undefined || style == undefined) console.error("Game error: parameters missing");
- else {
- const med = {
- typeOfMedia: 'text',
- name: text,
- x: x || game.add.default.x,
- y: y || game.add.default.y,
- _xWithAnchor: x || game.add.default._xWithAnchor,
- _yWithAnchor: y || game.add.default._yWithAnchor,
- xAnchor: game.add.default.xAnchor,
- yAnchor: game.add.default.yAnchor,
- shadow : game.add.default.shadow,
- shadowColor : game.add.default.shadowColor,
- shadowBlur : game.add.default.shadowBlur,
- alpha: game.add.default.alpha,
- font: style.font || game.add.default.font,
- fill: style.fill || game.add.default.fill,
- align: align || style.align || game.add.default.align,
- anchor: function () { console.error("Game error: there's no anchor for text"); },
- get xWithAnchor() { return this.x; },
- get yWithAnchor() { return this.y; }
- };
- game.render.queue.push(med);
- return med;
- }
- },
- graphic: {
-
-
-
-
-
- rect: function (x, y, width, height, lineColor, lineWidth, fillColor, alpha) {
- if (x == undefined || y == undefined || width == undefined) console.error("Game error: parameters missing");
- else {
- const med = {
- typeOfMedia: 'rect',
- x: x || game.add.default.x,
- y: y || game.add.default.y,
- _xWithAnchor: x || game.add.default._xWithAnchor,
- _yWithAnchor: y || game.add.default._yWithAnchor,
- xAnchor: game.add.default.xAnchor,
- yAnchor: game.add.default.yAnchor,
- shadow : game.add.default.shadow,
- shadowColor : game.add.default.shadowColor,
- shadowBlur : game.add.default.shadowBlur,
- alpha: (alpha != undefined) ? alpha : game.add.default.alpha,
- scale: game.add.default.scale,
- width: 0,
- height: 0,
- lineColor: lineColor || game.add.default.lineColor,
- lineWidth: 0,
- fillColor: fillColor || game.add.default.fillColor,
- anchor: function (xAnchor, yAnchor) {
- this.xAnchor = xAnchor;
- this.yAnchor = yAnchor;
- },
- get xWithAnchor() { return this.x - (this.width * this.scale * this.xAnchor); },
- get yWithAnchor() { return this.y - (this.height * this.scale * this.yAnchor); }
- };
- if (width != 0) { med.width = width || game.add.default.width; }
- if (height != 0) { med.height = height || width || game.add.default.height; }
- if (lineWidth != 0) { med.lineWidth = lineWidth || game.add.default.lineWidth; }
- game.render.queue.push(med);
- return med;
- }
- },
-
-
-
-
-
- circle: function (x, y, diameter, lineColor, lineWidth, fillColor, alpha) {
- if (x == undefined || y == undefined || diameter == undefined) console.error("Game error: parameters missing");
- else {
- const med = {
- typeOfMedia: 'arc',
-
- x: x || game.add.default.x,
- y: y || game.add.default.y,
- _xWithAnchor: x || game.add.default._xWithAnchor,
- _yWithAnchor: y || game.add.default._yWithAnchor,
- xAnchor: game.add.default.xAnchor,
- yAnchor: game.add.default.yAnchor,
- shadow : game.add.default.shadow,
- shadowColor : game.add.default.shadowColor,
- shadowBlur : game.add.default.shadowBlur,
- alpha: (alpha != undefined) ? alpha : game.add.default.alpha,
- scale: game.add.default.scale,
- diameter: 0,
- width: 0,
- height: 0,
- angleStart: 0,
- angleEnd: 2 * Math.PI,
- anticlockwise: game.add.default.anticlockwise,
- lineColor: lineColor || game.add.default.lineColor,
- lineWidth: 0,
- fillColor: fillColor || game.add.default.fillColor,
- anchor: function (xAnchor, yAnchor) {
- this.xAnchor = xAnchor;
- this.yAnchor = yAnchor;
- },
- get xWithAnchor() { return this.x - (this.width * this.scale * this.xAnchor); },
- get yWithAnchor() { return this.y - (this.height * this.scale * this.yAnchor); }
- };
- if (diameter != 0) {
- med.diameter = diameter || game.add.default.diameter;
- med.width = med.height = med.diameter;
- }
- if (lineWidth != 0) {
- med.lineWidth = lineWidth || game.add.default.lineWidth;
- }
- game.render.queue.push(med);
- return med;
- }
- },
-
-
-
-
-
-
- arc: function (x, y, diameter, angleStart, angleEnd, anticlockwise, lineColor, lineWidth, fillColor, alpha) {
- if (x == undefined || y == undefined || diameter == undefined || angleStart == undefined || angleEnd == undefined) console.error("Game error: parameters missing");
- else {
- const med = {
- typeOfMedia: 'arc',
- x: x || game.add.default.x,
- y: y || game.add.default.y,
- _xWithAnchor: x || game.add.default._xWithAnchor,
- _yWithAnchor: y || game.add.default._yWithAnchor,
- xAnchor: game.add.default.xAnchor,
- yAnchor: game.add.default.yAnchor,
- shadow : game.add.default.shadow,
- shadowColor : game.add.default.shadowColor,
- shadowBlur : game.add.default.shadowBlur,
- alpha: (alpha != undefined) ? alpha : game.add.default.alpha,
- scale: game.add.default.scale,
- diameter: 0,
- width: 0,
- height: 0,
- angleStart: angleStart || 0,
- angleEnd: angleEnd || 2 * Math.PI,
- anticlockwise: anticlockwise || game.add.default.anticlockwise,
- lineColor: lineColor || game.add.default.lineColor,
- lineWidth: 0,
- fillColor: fillColor || game.add.default.fillColor,
- anchor: function (xAnchor, yAnchor) {
- this.xAnchor = xAnchor;
- this.yAnchor = yAnchor;
- },
- get xWithAnchor() { return this.x - (this.width * this.scale * this.xAnchor); },
- get yWithAnchor() { return this.y - (this.height * this.scale * this.yAnchor); }
- };
- if (diameter != 0) {
- med.diameter = diameter || game.add.default.diameter;
- med.width = med.height = med.diameter;
- }
- if (lineWidth != 0) { med.lineWidth = lineWidth || game.add.default.lineWidth; }
- game.render.queue.push(med);
- return med;
- }
- }
- }
- },
-
-
- render: {
- queue: [],
- _image: function (cur) {
- const x = cur.xWithAnchor, y = cur.yWithAnchor;
- if (cur.rotate && cur.rotate != 0) {
- context.save();
- context.translate(cur.x, cur.y);
- context.rotate(cur.rotate * Math.PI / 180);
- context.translate(-cur.x, -cur.y);
- }
- context.globalAlpha = cur.alpha;
- context.shadowBlur = (cur.shadow) ? cur.shadowBlur : 0;
- context.shadowColor = cur.shadowColor;
- context.drawImage(
- game.image[cur.name],
- x,
- y,
- cur.width * cur.scale,
- cur.height * cur.scale
- );
- context.shadowBlur = 0;
- context.globalAlpha = 1;
- if (cur.rotate && cur.rotate != 0) context.restore();
- },
- _sprite: function (cur) {
- const x = cur.xWithAnchor, y = cur.yWithAnchor;
- if (cur.rotate && cur.rotate != 0) {
- context.save();
- context.translate(cur.x, cur.y);
- context.rotate(cur.rotate * Math.PI / 180);
- context.translate(-cur.x, -cur.y);
- }
- context.globalAlpha = cur.alpha;
- context.shadowBlur = (cur.shadow) ? cur.shadowBlur : 0;
- context.shadowColor = cur.shadowColor;
- context.drawImage(
- game.sprite[cur.name],
- cur.width * cur.curFrame,
- 0,
- cur.width,
- cur.height,
- x,
- y,
- cur.width * cur.scale,
- cur.height * cur.scale
- );
- context.shadowBlur = 0;
- context.globalAlpha = 1;
- if (cur.rotate && cur.rotate != 0) context.restore();
- },
- _text: function (cur) {
- const x = cur.xWithAnchor, y = cur.yWithAnchor;
- if (cur.rotate && cur.rotate != 0) {
- context.save();
- context.translate(cur.x, cur.y);
- context.rotate(cur.rotate * Math.PI / 180);
- context.translate(-cur.x, -cur.y);
- }
- context.globalAlpha = cur.alpha;
- context.shadowBlur = (cur.shadow) ? cur.shadowBlur : 0;
- context.shadowColor = cur.shadowColor;
- context.font = cur.font;
- context.textAlign = cur.align;
- context.fillStyle = cur.fill;
- context.fillText(cur.name, x, y);
- context.shadowBlur = 0;
- context.globalAlpha = 1;
- if (cur.rotate && cur.rotate != 0) context.restore();
- },
- _graphic: {
- _rect: function (cur) {
- const x = cur.xWithAnchor, y = cur.yWithAnchor;
-
- if (cur.rotate && cur.rotate != 0) {
- context.save();
- context.translate(cur.x, cur.y);
- context.rotate(cur.rotate * Math.PI / 180);
- context.translate(-cur.x, -cur.y);
- }
-
- context.globalAlpha = cur.alpha;
-
- context.shadowBlur = (cur.shadow) ? cur.shadowBlur : 0;
- context.shadowColor = cur.shadowColor;
-
- if (cur.fillColor != 0) {
- context.fillStyle = cur.fillColor;
- context.fillRect(x, y, cur.width * cur.scale, cur.height * cur.scale);
- }
-
- if (cur.lineWidth != 0) {
- context.strokeStyle = cur.lineColor;
- context.lineWidth = cur.lineWidth;
- context.strokeRect(x, y, cur.width * cur.scale, cur.height * cur.scale);
- }
-
- context.shadowBlur = 0;
- context.globalAlpha = 1;
- if (cur.rotate && cur.rotate != 0) context.restore();
- },
- _arc: function (cur) {
- const x = cur.xWithAnchor, y = cur.yWithAnchor;
-
- if (cur.rotate && cur.rotate != 0) {
- context.save();
- context.translate(cur.x, cur.y);
- context.rotate(cur.rotate * Math.PI / 180);
- context.translate(-cur.x, -cur.y);
- }
-
- context.globalAlpha = cur.alpha;
-
- context.shadowBlur = (cur.shadow) ? cur.shadowBlur : 0;
- context.shadowColor = cur.shadowColor;
-
- if (cur.fillColor != 0) context.fillStyle = cur.fillColor;
-
- if (cur.lineWidth != 0) {
- context.strokeStyle = cur.lineColor;
- context.lineWidth = cur.lineWidth;
- }
-
- context.beginPath();
- if (cur.angleEnd != 2 * Math.PI) context.lineTo(x, y);
- context.arc(x, y, (cur.diameter / 2) * cur.scale, cur.angleStart, cur.angleEnd, cur.anticlockwise);
- if (cur.angleEnd != 2 * Math.PI) context.lineTo(x, y);
-
- if (cur.fillColor != 0) context.fill();
- if (cur.lineWidth != 0) context.stroke();
- context.shadowBlur = 0;
- context.globalAlpha = 1;
- if (cur.rotate && cur.rotate != 0) context.restore();
- },
- },
-
- all: function () {
- game.render.queue.forEach(cur => {
- switch (cur.typeOfMedia) {
- case 'image': this._image(cur); break;
- case 'sprite': this._sprite(cur); break;
- case 'text': this._text(cur); break;
- case 'rect': this._graphic._rect(cur); break;
- case 'arc': this._graphic._arc(cur); break;
- }
- });
- },
-
- clear: function () {
- game.render.queue = [];
- }
- },
-
- math: {
- randomInRange: function (min, max) {
- min = Math.ceil(min);
- max = Math.floor(max);
- return Math.floor(Math.random() * (max - min + 1) + min);
- },
- randomDivisor: function (number) {
- const validDivisors = [];
- for (let i = 2; i < number; i++) {
-
- if (number % i == 0) validDivisors.push(i);
- }
- const randIndex = game.math.randomInRange(0, validDivisors.length - 1);
- return validDivisors[randIndex];
- },
- degreeToRad: function (degree) {
- return degree * Math.PI / 180;
- },
- radToDegree: function (radian) {
- return radian * 180 / Math.PI;
- },
- distanceToPointer: function (xMouse, xIcon, yMouse, yIcon) {
- const a = Math.max(xMouse, xIcon) - Math.min(xMouse, xIcon);
- const b = Math.max(yMouse, yIcon) - Math.min(yMouse, yIcon);
- return Math.sqrt(a * a + b * b);
- },
- isOverIcon : function (xMouse, yMouse, icon) {
- const x = xMouse, y = yMouse, cur = icon;
- const valid =
- y >= cur.yWithAnchor && y <= (cur.yWithAnchor + cur.height * cur.scale) &&
- (x >= cur.xWithAnchor && x <= (cur.xWithAnchor + cur.width * cur.scale));
- return valid;
- }
- },
-
- timer: {
- _start: 0,
- _end: 0,
- elapsed: 0,
- start: function () {
- game.timer._start = game.timer._end = game.timer._elapsed = 0;
- game.timer._start = new Date().getTime();
- },
- stop: function () {
- if (game.timer._start != 0 && game.timer._end == 0) {
- game.timer._end = new Date().getTime();
- game.timer._elapsed = Math.floor((game.timer._end - game.timer._start) / 1000);
- }
- },
- get elapsed() { return game.timer._elapsed; }
- },
-
- event: {
- _list: [],
- add: function (name, func) {
- canvas.addEventListener(name, func);
- game.event._list.push([name, func]);
- },
- clear: function () {
- game.event._list.forEach(cur => {
- canvas.removeEventListener(cur[0], cur[1]);
- });
- game.event._list = [];
- },
- },
-
-
-
- loop: {
- id: undefined,
- curState: undefined,
- status: "off",
- waitingToStart: undefined,
- startTime: 0,
- DURATION: 1000 / 60,
- start: function (state) {
- if (game.loop.status == "off") {
- game.loop.curState = state;
- game.loop.startTime = new Date().getTime();
- game.loop.status = "on";
- game.loop.id = requestAnimationFrame(game.loop._run);
- } else {
- game.loop.waitingToStart = state;
- if (game.loop.status == "on") game.loop.stop();
- }
- },
- stop: function () {
- if (game.loop.status == "on") game.loop.status = "ending";
- },
- _run: function () {
- if (game.loop.status != "on") {
- game.loop._clear();
- } else {
- const timestamp = new Date().getTime();
- const runtime = timestamp - game.loop.startTime;
- if (runtime >= game.loop.DURATION) {
- if (debugMode) {
- let fps = runtime / 1000;
- fps = Math.round(1 / fps);
- displayFps.innerHTML = "Fps: " + fps;
- }
-
- game.loop.curState.update();
-
- game.animation._run();
- }
- game.loop.id = requestAnimationFrame(game.loop._run);
- }
- },
- _clear: function () {
- if (game.loop.id != undefined) {
- cancelAnimationFrame(game.loop.id);
- game.loop.id = undefined;
- game.loop.curState = undefined;
- game.loop.status = "off";
- displayFps.innerHTML = "";
- }
- if (game.loop.waitingToStart != undefined) {
- const temp = game.loop.waitingToStart;
- game.loop.waitingToStart = undefined;
- game.loop.start(temp);
- }
- },
- },
-
-
-
-
- animation: {
- queue: [],
- count: 0,
- play: function (name) {
- let newAnimation;
-
- for (let i in game.render.queue) {
- if (game.render.queue[i].animation != undefined && game.render.queue[i].animation[0] == name) {
- newAnimation = game.render.queue[i];
- break;
- }
- }
-
- if (newAnimation != undefined) game.animation.queue.push(newAnimation);
- },
- stop: function (name) {
-
- game.animation.queue.forEach(cur => {
- if (cur.animation[0] == name) {
- game.animation.queue.splice(cur, 1);
- }
- });
- },
- _run: function () {
- game.animation.queue.forEach(character => {
- if (!character.animation[2] || game.animation.count % character.animation[2] == 0) {
- const i = character.animation[1].indexOf(character.curFrame);
- if (i == -1) {
- if (debugMode) console.error("Game error: animation frame not found");
- } else if (i < character.animation[1].length - 1) {
- character.curFrame = character.animation[1][i + 1];
- } else {
- character.curFrame = character.animation[1][0];
- }
- }
- });
- game.animation.count++;
- },
- clear: function () {
-
- game.animation.count = 0;
-
- game.render.queue.forEach(cur => {
- if (cur.animation != undefined) {
- delete cur.animation;
- }
- });
-
- game.animation.queue = [];
- },
- }
- };
|