Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,8 @@ public void doLayout(int width, int height, CBp_Data data) {

// This is the scale the bubble will expand too.
//
SBubbles[i1].setAssignedScale(getRandInRange(_scaleRange));
//SBubbles[i1].setAssignedScale(getRandInRange(_scaleRange));
SBubbles[i1].setAssignedScale(1.0f);

Paint paint = new Paint();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ private boolean launchBubble() {
String correctVal = _currData.answer;

nextBubble.setColor(BP_CONST.bubbleColors[colorNdx]);
nextBubble.setScale(getRandInRange(_scaleRange));
//nextBubble.setScale(getRandInRange(_scaleRange));
nextBubble.setScale(1.0f);

// Cycle on the indexes to display
//
Expand All @@ -238,7 +239,8 @@ private boolean launchBubble() {

//Moved set color and scale here after text has been set
nextBubble.setColor(BP_CONST.bubbleColors[colorNdx]);
nextBubble.setScale(getRandInRange(_scaleRange));
//nextBubble.setScale(getRandInRange(_scaleRange));
nextBubble.setScale(1.0f);

int[] shapeSet = BP_CONST.drawableMap.get(responseVal);

Expand All @@ -261,7 +263,8 @@ private boolean launchBubble() {

//Moved set color and scale here after text has been set
nextBubble.setColor(BP_CONST.bubbleColors[colorNdx]);
nextBubble.setScale(getRandInRange(_scaleRange));
//nextBubble.setScale(getRandInRange(_scaleRange));
nextBubble.setScale(1.0f);

break;
}
Expand Down