浏览代码

✨ Apply default style to button object

Pedro Schneider 3 年之前
父节点
当前提交
3a173f17bd
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      pandora/game_objects/ui_objects/Button.js

+ 2 - 1
pandora/game_objects/ui_objects/Button.js

@@ -8,7 +8,8 @@ class Button extends UIObject
         this.label = label;
         this.P5Element.html(label);
         this.P5Element.position(0, 0);
-        
+
+        this.setStyle(DEFAULT_STYLE);
 
         this.connectCallbacks();
     }