Jelajahi Sumber

✨ Apply default style to button object

Pedro Schneider 3 tahun lalu
induk
melakukan
3a173f17bd
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  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();
     }