Fix: set shortcutText bounds of PlayAppButton
This commit is contained in:
@@ -46,10 +46,33 @@ function PlayAppButton(x, y) {
|
||||
// this.setIconSize(40);
|
||||
// this.setShortcutText("[단축키]");
|
||||
|
||||
this.setShorcutTextBounds();
|
||||
|
||||
this.addIcon("home");
|
||||
this.setIconSize(80);
|
||||
}
|
||||
|
||||
PlayAppButton.prototype.setShorcutTextBounds = function() {
|
||||
var offsetX = 10;
|
||||
var offsetY = -20;
|
||||
var textWidth = PlayAppButton.WIDTH - offsetX * 2;
|
||||
|
||||
this.shortcutText.font = this.setting.font;
|
||||
this.shortcutText.fontSize = this.setting.fontSize;
|
||||
|
||||
this.shortcutText.style.align = "center";
|
||||
this.shortcutText.style.boundsAlignH = "center";
|
||||
this.shortcutText.style.boundsAlignV = "top"
|
||||
this.shortcutText.style.wordWrap = true;
|
||||
this.shortcutText.style.wordWrapWidth = textWidth;
|
||||
this.shortcutText.style.fill = "white";
|
||||
// this.shortcutText.style.backgroundColor = "black";
|
||||
|
||||
this.shortcutText.anchor.set(0, 0);
|
||||
this.shortcutText.x = offsetX;
|
||||
this.shortcutText.setTextBounds(0, offsetY, textWidth, 200);
|
||||
}
|
||||
|
||||
PlayAppButton.prototype.setInputEnabled = function(isEnabled) {
|
||||
this.strokeSprite.inputEnabled = isEnabled;
|
||||
this.buttonSprite.inputEnabled = isEnabled;
|
||||
|
||||
Reference in New Issue
Block a user