===================================================================
--- original.js
+++ change.js
@@ -4,9 +4,9 @@
// Class for the Answer Option
var AnswerOption = Container.expand(function () {
var self = Container.call(this);
var optionText = new Text2('', {
- size: 150,
+ size: 200,
fill: "#ffffff"
});
optionText.anchor.set(0.5, 0.5);
self.addChild(optionText);
@@ -29,9 +29,9 @@
// Class for the Question
var Question = Container.expand(function () {
var self = Container.call(this);
var questionText = new Text2('', {
- size: 180,
+ size: 230,
fill: "#ffffff"
});
questionText.anchor.set(0.5, 0.5);
self.addChild(questionText);
@@ -185,9 +185,9 @@
game.addChild(option);
answerOptions.push(option);
}
var scoreTxt = new Text2('0', {
- size: 150,
+ size: 200,
fill: "#ffffff"
});
scoreTxt.anchor.set(0.5, 0);
LK.gui.top.addChild(scoreTxt);