c
This commit is contained in:
parent
17666fdbed
commit
1839a0381e
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
function drawTimer(){
|
||||
function drawTimer() {
|
||||
var leftVertexes = [];
|
||||
var rightVertexes = [];
|
||||
if(MainHex.ct - MainHex.lastCombo < settings.comboTime){
|
||||
|
@ -15,8 +15,8 @@ function drawTimer(){
|
|||
}
|
||||
}
|
||||
}
|
||||
if(rightVertexes.length !=0) drawSide(rightVertexes);
|
||||
if(leftVertexes.length !=0) drawSide(leftVertexes);
|
||||
if(rightVertexes.length !== 0) drawSide(rightVertexes);
|
||||
if(leftVertexes.length !== 0) drawSide(leftVertexes);
|
||||
}
|
||||
|
||||
function calcSide(startVertex,endVertex,fraction,offset){
|
||||
|
|
Loading…
Reference in a new issue