-
Notifications
You must be signed in to change notification settings - Fork 2
/
lvl15.js
39 lines (30 loc) · 2.57 KB
/
lvl15.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(function(){
function lvl15(io){
//CANVAS VARS
this.io = io;
this.cHeight = io.canvas.height;
this.cWidth = io.canvas.width;
//GAME VARS
this.goal =
this.goalTouch =
this.goalEffect = undefined;
this.goalTime = 150;
this.goalTouchTime = 0;
this.gameWin =
this.gameWinAnim =
this.gameEnd = false;
}; iio.lvl15 = lvl15;
lvl15.prototype.setup = function(){
levelBuilder.setup(this,'lvl5');
levelBuilder.blockBuilder(
[{"vertexs":[{"x":10.081463009143809,"y":13.983193277310924},{"x":10.054862842892767,"y":14.978151260504202},{"x":9.815461346633416,"y":15.515966386554622},{"x":9.017456359102246,"y":15.892436974789916},{"x":8.006650041562759,"y":15.892436974789916},{"x":7.155444721529509,"y":15.4890756302521},{"x":6.623441396508728,"y":15.031932773109244},{"x":6.570241064006651,"y":14.036974789915968}],"numberEdges":8,"color":["#CDDC39","#B9C246"],"pos":{"x":1.4061877876520157,"y":0}},{"vertexs":[{"x":6.995843724023276,"y":14.010084033613445},{"x":7.022443890274315,"y":14.95126050420168},{"x":6.01163757273483,"y":15.838655462184875},{"x":5.0008312551953455,"y":15.865546218487395},{"x":4.043225270157938,"y":14.978151260504202},{"x":3.9634247714048216,"y":13.956302521008404}],"numberEdges":6,"color":["#795548","#451F14"],"pos":{"x":-0.8400554992258549,"y":0}},{"vertexs":[{"x":3.857024106400665,"y":13.983193277310924},{"x":3.8304239401496263,"y":14.843697478991597},{"x":2.58021612635079,"y":14.763025210084034},{"x":2.5536159600997506,"y":13.87563025210084}],"numberEdges":4,"color":colors.turquoise,"pos":{"x":6.126553741283715,"y":0}},{"vertexs":[{"x":2.420615128844555,"y":13.929411764705883},{"x":2.420615128844555,"y":15.46218487394958},{"x":1.0374064837905237,"y":15.435294117647059},{"x":1.0640066500415628,"y":14.467226890756303}],"numberEdges":4,"color":["#F05722","#E3421E"],"pos":{"x":-0.2901137196458876,"y":0}},{"vertexs":[{"x":2.5004156275976728,"y":13.472268907563025},{"x":2.4738154613466334,"y":13.956302521008404},{"x":1.0374064837905237,"y":14.789915966386555},{"x":1.0108063175394846,"y":13.526050420168069}],"numberEdges":4,"color":["#E7981D","#E05C16"],"pos":{"x":1.3653454021550715,"y":0}},{"vertexs":[{"x":10.028262676641729,"y":13.01512605042017},{"x":10.028262676641729,"y":13.983193277310924},{"x":7.527847049044057,"y":13.84873949579832},{"x":7.501246882793017,"y":13.3109243697479}],"numberEdges":4,"color":["#A61D4C","#720D37"],"pos":{"x":3.6507508661597967,"y":0}}]
);
}//SETUP
lvl15.prototype.step = function(){
levelBuilder.step(this);
}//STEP
iio.AppManager.prototype.activatelvl15 = function(io){
this.level = new iio.lvl15(io);
return this.level;
}
})();