ソースを参照

✨ 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();
     }