Browse Source

ninekey metrics

pull/8/head
Tim Glasgow 2 years ago
parent
commit
a0a7726142
  1. 9
      squarenotsquare/src/themes/Metrics.js

9
squarenotsquare/src/themes/Metrics.js

@ -45,7 +45,8 @@ class AppMetrics {
this.margins = { this.margins = {
default: this.normalize(5), default: this.normalize(5),
buttonMargin: this.normalize(20), buttonMargin: this.normalize(20),
gameStartMargin: this.normalize(30) gameStartMargin: this.normalize(30),
nineKeyMargin: this.normalize(2)
} }
this.buttons = { this.buttons = {
@ -57,11 +58,15 @@ class AppMetrics {
answerButton: { answerButton: {
width: this.normalize(40), width: this.normalize(40),
height: this.normalize(40) height: this.normalize(40)
},
nineKeyButton: {
width: this.screenWidth * 0.28,
height: this.screenHeight * 0.08
} }
} }
this.animated = { this.animated = {
gameScrollInterval: ( squareInterval: (
this.buttons.answerButton.height + this.buttons.answerButton.height +
(this.margins.buttonMargin * 2) (this.margins.buttonMargin * 2)
) )

Loading…
Cancel
Save