瀏覽代碼

New images

Nikatlas 6 年之前
父節點
當前提交
684a79ae5f
共有 4 個文件被更改,包括 3 次插入3 次删除
  1. 二進制
      public/files/assets/cards/frame_blue.png
  2. 二進制
      public/files/assets/cards/frame_red.png
  3. 二進制
      public/files/assets/cards/label.png
  4. 3 3
      src/Game/views/base/Card.js

二進制
public/files/assets/cards/frame_blue.png


二進制
public/files/assets/cards/frame_red.png


二進制
public/files/assets/cards/label.png


+ 3 - 3
src/Game/views/base/Card.js

@@ -48,12 +48,12 @@ class Card extends GuiableContainer{
     }
 
     construct(props) {
-        let [w,h] = [819/3,1020/3];
+        let [w,h] = [494,683];
 
         this.sprite = new PIXI.Sprite();
         this.sprite.anchor.set(0.5,0.5);
-        this.sprite.width = w-30;
-        this.sprite.height= h-30*h/w;
+        this.sprite.width = w;
+        this.sprite.height= h;
 
         this.frame = new PIXI.Sprite(BlueImage);
         this.frame.anchor.set(0.5,0.5);