zane 1 месяц назад
Родитель
Сommit
fb1885ed2f

+ 1 - 1
assets/resources/i18n/en.ts

@@ -11,7 +11,7 @@ export const languages = {
     TotalPogTip: `Total prize pool
 New season will auto-reset after all POGs are distributed. Never too late to join the hype!`,
     TodaySend: "Sent",
-    TodayRemaining: "Remaining",
+    TodayRemaining: "Remaining POG",
     MyRankTip: `Rank high, earn seasonal $TOG & Badge NFTs!`,
     WeekTimeTip: `Current Season Playtime: Key Engagement Metric`,
     AllTankSegmentTitle: `Overview`,

+ 11 - 0
assets/resources/prefab/hall/Hall.ts

@@ -78,7 +78,18 @@ export class Hall extends BaseUI {
     }
   }
   private _lastPage: Node = null!;
+
+  private _last_click_time: number = 0;
   async switchPage(name: string): Promise<BaseUI> {
+    if (this._last_click_time > 0) {
+      let now = Date.now();
+      if (now - this._last_click_time < 500) {
+        // Tips.show("Click too fast");
+        return;
+      }
+    }
+    this._last_click_time = Date.now();
+
     if (this._last_tab) {
       this._last_tab.getChildByName("value").getComponent(Label).color =
         new Color(255, 255, 255, 255);

+ 4 - 3
assets/resources/prefab/hall/HallTitleBar.ts

@@ -102,8 +102,9 @@ export class HallTitleBar extends BaseUI {
         break;
       case "btn_game_pass":
         let page = await Hall.ins.switchPage(Hall.PageShop);
-
-        if(UserM.ins.getGamePassCount()<=0){
+        let shop = page.getComponent(PageShop);
+        shop.switchTab(PageShop.TAB_GAME_PASS);
+        if (UserM.ins.getGamePassCount() <= 0) {
           return;
         }
 
@@ -116,7 +117,7 @@ export class HallTitleBar extends BaseUI {
             }
           }
         }, 500);
-        
+
         break;
     }
   }

+ 2 - 2
assets/resources/prefab/hall/PagePlay.prefab

@@ -2722,7 +2722,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "lbl_send_portal",
+    "_name": "lbl_remain_info",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {
@@ -3183,7 +3183,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "lbl_reward_portal",
+    "_name": "lbl_my_reward_pog",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {

+ 15 - 23
assets/resources/prefab/hall/PagePlay.ts

@@ -24,29 +24,21 @@ export class PagePlay extends BaseUI {
   }
   async ui() {
     let layout = this.FindNode("games_layout");
-    this.tpl.parent = layout;
-    this.tpl.active = true;
-    this.tpl.getComponent(PlayGameItem).init(100);
-    // layout.removeAllChildren();
-    // for (let i = 0; i < 1; i++) {
-    //   let item = instantiate(this.tpl);
-    //   item.parent = layout;
-    //   item.active = true;
-    //   item.getComponent(PlayGameItem).init((i + 1) * 100);
-    // }
-
-    let data: RankDto = await RankM.ins.rankData(PageRank.RankTypeSeason);
-
-    this.setText(
-      "lbl_send_portal",
-      Utils.formatNumber(data.remainPog, 0) +
-        "/" +
-        Utils.formatNumber(data.seasonPog, 0)
-    );
-    this.setText(
-      "lbl_remain_portal",
-      "" + UserM.ins.getGoodsCount(GoodsId.POG)
-    );
+
+    // this.tpl.getComponent(PlayGameItem).init(100);
+    layout.removeAllChildren();
+    let list = UserM.ins.data.gameList;
+
+    for (let i = 0; i < list.length; i++) {
+      if (list[i].gameId != 2) {
+        continue;
+      }
+
+      let item = instantiate(this.tpl);
+      item.parent = layout;
+      item.active = true;
+      item.getComponent(PlayGameItem).init(list[i]);
+    }
   }
 
   public onShow(): void {

+ 13 - 13
assets/resources/prefab/hall/PageRank.prefab

@@ -1138,7 +1138,7 @@
     },
     "_lpos": {
       "__type__": "cc.Vec3",
-      "x": -309.369,
+      "x": -300,
       "y": -33.292,
       "z": 0
     },
@@ -1276,7 +1276,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "lbl_t_season_desc1",
+    "_name": "lbl_t_remaining",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {
@@ -1374,7 +1374,7 @@
       "b": 156,
       "a": 255
     },
-    "_string": "TOTAL PRIZE POOL",
+    "_string": "remain",
     "_horizontalAlign": 0,
     "_verticalAlign": 1,
     "_actualFontSize": 22,
@@ -1762,7 +1762,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "lbl_total_pog",
+    "_name": "lbl_remain_pog",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {
@@ -2168,7 +2168,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "lbl_t_remaining",
+    "_name": "lbl_total_tips",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {
@@ -2230,7 +2230,7 @@
     },
     "_contentSize": {
       "__type__": "cc.Size",
-      "width": 80,
+      "width": 42.24609375,
       "height": 25.2
     },
     "_anchorPoint": {
@@ -2266,7 +2266,7 @@
       "b": 156,
       "a": 255
     },
-    "_string": "今日剩餘",
+    "_string": "Total",
     "_horizontalAlign": 0,
     "_verticalAlign": 1,
     "_actualFontSize": 20,
@@ -2327,7 +2327,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "lbl_remain_pog",
+    "_name": "lbl_total_pog",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {
@@ -2634,7 +2634,7 @@
     },
     "_lpos": {
       "__type__": "cc.Vec3",
-      "x": 279.356,
+      "x": 253.294,
       "y": -33.608,
       "z": 0
     },
@@ -4453,7 +4453,7 @@
     },
     "_lpos": {
       "__type__": "cc.Vec3",
-      "x": -279.553,
+      "x": -300,
       "y": -40.9,
       "z": 0
     },
@@ -4909,7 +4909,7 @@
     },
     "_contentSize": {
       "__type__": "cc.Size",
-      "width": 20,
+      "width": -30,
       "height": 200
     },
     "_anchorPoint": {
@@ -4943,7 +4943,7 @@
       "height": 40
     },
     "_startAxis": 0,
-    "_paddingLeft": 30,
+    "_paddingLeft": -20,
     "_paddingRight": 0,
     "_paddingTop": 0,
     "_paddingBottom": 0,
@@ -5493,7 +5493,7 @@
   },
   {
     "__type__": "cc.Node",
-    "_name": "Label-001",
+    "_name": "lbl_rank_add_tips",
     "_objFlags": 0,
     "__editorExtras__": {},
     "_parent": {

+ 5 - 0
assets/resources/prefab/hall/PageRank.ts

@@ -65,6 +65,11 @@ export class PageRank extends BaseUI implements OnTabClickListener {
     this.getComponentsInChildren(GradeItem).forEach((item) => {
       item.setSelected(item && item.data.id == this._grade);
     });
+    let Allocation = ConfigM.ins.getGradeAllocation(this._grade);
+    let PogBooster = ConfigM.ins.getGrade(this._grade).addition;
+    let desc = `${Allocation}% TOG Allocation + ${PogBooster}% POG Booster from Badge NFT`;
+
+    this.setText("lbl_rank_add_tips", desc);
   }
 
   private _type: number = PageRank.RankTypeSeason;

+ 8 - 11
assets/resources/prefab/hall/PageShop.ts

@@ -21,27 +21,26 @@ const { ccclass, property } = _decorator;
 
 @ccclass("PageShop")
 export class PageShop extends BaseUI implements OnTabClickListener {
-   
-  switchTab(tab: { index: number; name: string; }) {
+  switchTab(tab: { index: number; name: string }) {
     this.onTabClick(tab.index);
   }
   protected onLoad(): void {
     super.onLoad();
     this.init();
   }
-    static readonly TAB_GAME_PASS = {
+  static readonly TAB_GAME_PASS = {
     index: 0,
     name: "ScrollViewGamePass",
   };
-    static readonly TAB_POG_BOOSTER = {
+  static readonly TAB_POG_BOOSTER = {
     index: 1,
     name: "ScrollViewPogBooster",
   };
-    static readonly TAB_ITEM_BOX = {
+  static readonly TAB_ITEM_BOX = {
     index: 2,
     name: "ScrollViewItemBox",
   };
-    static readonly TAB_POG_BOX = { index: 3, name: "ScrollViewPogBox" };
+  static readonly TAB_POG_BOX = { index: 3, name: "ScrollViewPogBox" };
   private _tabsTitle: CommonTabsTitle = null;
   init() {
     this._tabsTitle = this.getComponentInChildren(CommonTabsTitle);
@@ -54,6 +53,7 @@ export class PageShop extends BaseUI implements OnTabClickListener {
     this.FindNode("PogBoosterItem").active = false;
   }
   onTabClick(index: number) {
+    this._tabsTitle.setSelect(index);
     this.FindNode("ShopPageContainer").children.forEach((child) => {
       child.active = false;
     });
@@ -141,9 +141,8 @@ export class PageShop extends BaseUI implements OnTabClickListener {
       item.active = true;
       scrollView.content.addChild(item);
 
-      
-      let c= ConfigM.ins.getShopListByStoreId(1)[i];
-      item.getComponent(GamePassItem).init(list[i],c)
+      let c = ConfigM.ins.getShopListByStoreId(1)[i];
+      item.getComponent(GamePassItem).init(list[i], c);
     }
   }
 
@@ -173,8 +172,6 @@ export class PageShop extends BaseUI implements OnTabClickListener {
       await UserM.ins.refreshInfo();
     }
     this.initGamePassShard();
-
-
   }
   protected simpleOnBtnClick(name: string): void {
     switch (name) {

+ 7 - 7
assets/resources/prefab/hall/PageWallet.prefab

@@ -30670,7 +30670,7 @@
     "_contentSize": {
       "__type__": "cc.Size",
       "width": 40,
-      "height": 30
+      "height": 40
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",
@@ -30706,12 +30706,12 @@
       "a": 255
     },
     "_spriteFrame": {
-      "__uuid__": "91172f9d-f471-4f22-bc17-996331ad8f88@f9941",
+      "__uuid__": "e4da6f36-9d15-46a2-88cc-95d05aa21a64@f9941",
       "__expectedType__": "cc.SpriteFrame"
     },
     "_type": 0,
     "_fillType": 0,
-    "_sizeMode": 1,
+    "_sizeMode": 0,
     "_fillCenter": {
       "__type__": "cc.Vec2",
       "x": 0,
@@ -31565,8 +31565,8 @@
     },
     "_contentSize": {
       "__type__": "cc.Size",
-      "width": 42,
-      "height": 35
+      "width": 40,
+      "height": 40
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",
@@ -31602,12 +31602,12 @@
       "a": 255
     },
     "_spriteFrame": {
-      "__uuid__": "25678302-6071-4fab-a707-bd131a9b96f3@f9941",
+      "__uuid__": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d@f9941",
       "__expectedType__": "cc.SpriteFrame"
     },
     "_type": 0,
     "_fillType": 0,
-    "_sizeMode": 1,
+    "_sizeMode": 0,
     "_fillCenter": {
       "__type__": "cc.Vec2",
       "x": 0,

+ 13 - 3
assets/resources/prefab/item/PlayGameItem.ts

@@ -3,6 +3,8 @@ import { _decorator, Component, Node, Event } from "cc";
 import BaseUI from "../../scripts/base/BaseUI";
 import { GameDetailLayer } from "../layer/GameDetailLayer";
 import { Tips } from "../../scripts/mgr/Tips";
+import { GameInfo } from "../../scripts/api/UserM";
+import Utils from "../../scripts/utils/Utils";
 
 const { ccclass, property } = _decorator;
 
@@ -11,10 +13,18 @@ export class PlayGameItem extends BaseUI {
   protected onLoad(): void {
     super.onLoad();
   }
-  private gameId: number = 0;
 
-  init(itemID: number) {
-    this.gameId = itemID;
+  private data: GameInfo;
+  init(item: GameInfo) {
+    this.data = item;
+    // this.setText("lbl_game_name", item.gameName);
+    this.setText(
+      "lbl_remain_info",
+      Utils.formatNumber(item.remainPog, 0) +
+        "/" +
+        Utils.formatNumber(item.seasonPog, 0)
+    );
+    this.setText("lbl_my_reward_pog", Utils.formatNumber(item.myRewardPog, 0));
   }
 
   protected simpleOnBtnClick(name: string): void {

+ 3 - 3
assets/resources/prefab/layer/TipsLayer.prefab

@@ -1204,8 +1204,8 @@
     },
     "_lpos": {
       "__type__": "cc.Vec3",
-      "x": 0,
-      "y": 210.54999999999998,
+      "x": -28.89,
+      "y": 210.55,
       "z": 0
     },
     "_lrot": {
@@ -1550,7 +1550,7 @@
     "_lpos": {
       "__type__": "cc.Vec3",
       "x": -26.882,
-      "y": 15.622,
+      "y": 0,
       "z": 0
     },
     "_lrot": {

+ 4 - 1
assets/resources/scripts/api/ConfigM.ts

@@ -60,6 +60,10 @@ export class ConfigGrade {
   addition: number;
 }
 export default class ConfigM {
+  getGradeAllocation(_grade: number) {
+    let r = [5, 10, 10, 24, 26, 20, 5];
+    return r[_grade - 1];
+  }
   getGrade(grade: number): ConfigGrade {
     return this.Grades().find((item) => item.id == grade);
   }
@@ -119,7 +123,6 @@ export default class ConfigM {
       name: "BRONZE",
       addition: 2.0,
     });
-    
 
     r = r.sort((a, b) => b.id - a.id);
     return r;

+ 10 - 0
assets/resources/scripts/api/UserM.ts

@@ -16,6 +16,14 @@ export class SeasonInfo {
   endTimeAt: number;
   gamePassNum: number;
 }
+
+export class GameInfo {
+  gameId: number;
+  gameUser: number;
+  myRewardPog: number;
+  remainPog: number;
+  seasonPog: number;
+}
 export class UserInfo {
   userId: number; // 用户id
   userName: string; // 用户名
@@ -24,6 +32,8 @@ export class UserInfo {
   season: SeasonInfo;
   currentTime: number; // 当前时间
   goodList: GoodInfo[];
+
+  gameList: GameInfo[];
 }
 
 export class BindWalletResult {

BIN
assets/resources/texture/common/grade3.png


+ 22 - 22
assets/resources/texture/common/grade3.png.meta

@@ -2,7 +2,7 @@
   "ver": "1.0.27",
   "importer": "image",
   "imported": true,
-  "uuid": "0dcd2024-fcd0-472d-94f0-8096ab243994",
+  "uuid": "39058437-1f7f-44c0-a1de-8e41e6940c4a",
   "files": [
     ".json",
     ".png"
@@ -10,14 +10,14 @@
   "subMetas": {
     "6c48a": {
       "importer": "texture",
-      "uuid": "0dcd2024-fcd0-472d-94f0-8096ab243994@6c48a",
+      "uuid": "39058437-1f7f-44c0-a1de-8e41e6940c4a@6c48a",
       "displayName": "grade3",
       "id": "6c48a",
       "name": "texture",
       "userData": {
         "wrapModeS": "clamp-to-edge",
         "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "0dcd2024-fcd0-472d-94f0-8096ab243994",
+        "imageUuidOrDatabaseUri": "39058437-1f7f-44c0-a1de-8e41e6940c4a",
         "isUuid": true,
         "visible": false,
         "minfilter": "linear",
@@ -34,7 +34,7 @@
     },
     "f9941": {
       "importer": "sprite-frame",
-      "uuid": "0dcd2024-fcd0-472d-94f0-8096ab243994@f9941",
+      "uuid": "39058437-1f7f-44c0-a1de-8e41e6940c4a@f9941",
       "displayName": "grade3",
       "id": "f9941",
       "name": "spriteFrame",
@@ -45,9 +45,9 @@
         "offsetX": 0.5,
         "offsetY": -0.5,
         "trimX": 1,
-        "trimY": 7,
+        "trimY": 1,
         "width": 99,
-        "height": 91,
+        "height": 103,
         "rawWidth": 100,
         "rawHeight": 104,
         "borderTop": 0,
@@ -62,16 +62,16 @@
         "vertices": {
           "rawPosition": [
             -49.5,
-            -45.5,
+            -51.5,
             0,
             49.5,
-            -45.5,
+            -51.5,
             0,
             -49.5,
-            45.5,
+            51.5,
             0,
             49.5,
-            45.5,
+            51.5,
             0
           ],
           "indexes": [
@@ -84,37 +84,37 @@
           ],
           "uv": [
             1,
-            97,
+            103,
             100,
-            97,
+            103,
             1,
-            6,
+            0,
             100,
-            6
+            0
           ],
           "nuv": [
             0.01,
-            0.057692307692307696,
+            0,
             1,
-            0.057692307692307696,
+            0,
             0.01,
-            0.9326923076923077,
+            0.9903846153846154,
             1,
-            0.9326923076923077
+            0.9903846153846154
           ],
           "minPos": [
             -49.5,
-            -45.5,
+            -51.5,
             0
           ],
           "maxPos": [
             49.5,
-            45.5,
+            51.5,
             0
           ]
         },
         "isUuid": true,
-        "imageUuidOrDatabaseUri": "0dcd2024-fcd0-472d-94f0-8096ab243994@6c48a",
+        "imageUuidOrDatabaseUri": "39058437-1f7f-44c0-a1de-8e41e6940c4a@6c48a",
         "atlasUuid": ""
       },
       "ver": "1.0.12",
@@ -129,6 +129,6 @@
     "type": "sprite-frame",
     "hasAlpha": true,
     "fixAlphaTransparencyArtifacts": false,
-    "redirect": "0dcd2024-fcd0-472d-94f0-8096ab243994@6c48a"
+    "redirect": "39058437-1f7f-44c0-a1de-8e41e6940c4a@6c48a"
   }
 }

BIN
assets/resources/texture/common/grade5.png


+ 22 - 22
assets/resources/texture/common/grade5.png.meta

@@ -2,7 +2,7 @@
   "ver": "1.0.27",
   "importer": "image",
   "imported": true,
-  "uuid": "39058437-1f7f-44c0-a1de-8e41e6940c4a",
+  "uuid": "c4a202ca-0a0b-4dd2-8372-379077266a82",
   "files": [
     ".json",
     ".png"
@@ -10,14 +10,14 @@
   "subMetas": {
     "6c48a": {
       "importer": "texture",
-      "uuid": "39058437-1f7f-44c0-a1de-8e41e6940c4a@6c48a",
+      "uuid": "c4a202ca-0a0b-4dd2-8372-379077266a82@6c48a",
       "displayName": "grade5",
       "id": "6c48a",
       "name": "texture",
       "userData": {
         "wrapModeS": "clamp-to-edge",
         "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "39058437-1f7f-44c0-a1de-8e41e6940c4a",
+        "imageUuidOrDatabaseUri": "c4a202ca-0a0b-4dd2-8372-379077266a82",
         "isUuid": true,
         "visible": false,
         "minfilter": "linear",
@@ -34,7 +34,7 @@
     },
     "f9941": {
       "importer": "sprite-frame",
-      "uuid": "39058437-1f7f-44c0-a1de-8e41e6940c4a@f9941",
+      "uuid": "c4a202ca-0a0b-4dd2-8372-379077266a82@f9941",
       "displayName": "grade5",
       "id": "f9941",
       "name": "spriteFrame",
@@ -45,9 +45,9 @@
         "offsetX": 0.5,
         "offsetY": -0.5,
         "trimX": 1,
-        "trimY": 1,
+        "trimY": 7,
         "width": 99,
-        "height": 103,
+        "height": 91,
         "rawWidth": 100,
         "rawHeight": 104,
         "borderTop": 0,
@@ -62,16 +62,16 @@
         "vertices": {
           "rawPosition": [
             -49.5,
-            -51.5,
+            -45.5,
             0,
             49.5,
-            -51.5,
+            -45.5,
             0,
             -49.5,
-            51.5,
+            45.5,
             0,
             49.5,
-            51.5,
+            45.5,
             0
           ],
           "indexes": [
@@ -84,37 +84,37 @@
           ],
           "uv": [
             1,
-            103,
+            97,
             100,
-            103,
+            97,
             1,
-            0,
+            6,
             100,
-            0
+            6
           ],
           "nuv": [
             0.01,
-            0,
+            0.057692307692307696,
             1,
-            0,
+            0.057692307692307696,
             0.01,
-            0.9903846153846154,
+            0.9326923076923077,
             1,
-            0.9903846153846154
+            0.9326923076923077
           ],
           "minPos": [
             -49.5,
-            -51.5,
+            -45.5,
             0
           ],
           "maxPos": [
             49.5,
-            51.5,
+            45.5,
             0
           ]
         },
         "isUuid": true,
-        "imageUuidOrDatabaseUri": "39058437-1f7f-44c0-a1de-8e41e6940c4a@6c48a",
+        "imageUuidOrDatabaseUri": "c4a202ca-0a0b-4dd2-8372-379077266a82@6c48a",
         "atlasUuid": ""
       },
       "ver": "1.0.12",
@@ -129,6 +129,6 @@
     "type": "sprite-frame",
     "hasAlpha": true,
     "fixAlphaTransparencyArtifacts": false,
-    "redirect": "39058437-1f7f-44c0-a1de-8e41e6940c4a@6c48a"
+    "redirect": "c4a202ca-0a0b-4dd2-8372-379077266a82@6c48a"
   }
 }

BIN
assets/resources/texture/common/grade6.png


+ 6 - 6
assets/resources/texture/common/grade6.png.meta

@@ -2,7 +2,7 @@
   "ver": "1.0.27",
   "importer": "image",
   "imported": true,
-  "uuid": "c4a202ca-0a0b-4dd2-8372-379077266a82",
+  "uuid": "0dcd2024-fcd0-472d-94f0-8096ab243994",
   "files": [
     ".json",
     ".png"
@@ -10,14 +10,14 @@
   "subMetas": {
     "6c48a": {
       "importer": "texture",
-      "uuid": "c4a202ca-0a0b-4dd2-8372-379077266a82@6c48a",
+      "uuid": "0dcd2024-fcd0-472d-94f0-8096ab243994@6c48a",
       "displayName": "grade6",
       "id": "6c48a",
       "name": "texture",
       "userData": {
         "wrapModeS": "clamp-to-edge",
         "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "c4a202ca-0a0b-4dd2-8372-379077266a82",
+        "imageUuidOrDatabaseUri": "0dcd2024-fcd0-472d-94f0-8096ab243994",
         "isUuid": true,
         "visible": false,
         "minfilter": "linear",
@@ -34,7 +34,7 @@
     },
     "f9941": {
       "importer": "sprite-frame",
-      "uuid": "c4a202ca-0a0b-4dd2-8372-379077266a82@f9941",
+      "uuid": "0dcd2024-fcd0-472d-94f0-8096ab243994@f9941",
       "displayName": "grade6",
       "id": "f9941",
       "name": "spriteFrame",
@@ -114,7 +114,7 @@
           ]
         },
         "isUuid": true,
-        "imageUuidOrDatabaseUri": "c4a202ca-0a0b-4dd2-8372-379077266a82@6c48a",
+        "imageUuidOrDatabaseUri": "0dcd2024-fcd0-472d-94f0-8096ab243994@6c48a",
         "atlasUuid": ""
       },
       "ver": "1.0.12",
@@ -129,6 +129,6 @@
     "type": "sprite-frame",
     "hasAlpha": true,
     "fixAlphaTransparencyArtifacts": false,
-    "redirect": "c4a202ca-0a0b-4dd2-8372-379077266a82@6c48a"
+    "redirect": "0dcd2024-fcd0-472d-94f0-8096ab243994@6c48a"
   }
 }

BIN
assets/resources/texture/wallet/icon_tog_help_2.png


+ 134 - 0
assets/resources/texture/wallet/icon_tog_help_2.png.meta

@@ -0,0 +1,134 @@
+{
+  "ver": "1.0.27",
+  "importer": "image",
+  "imported": true,
+  "uuid": "e4da6f36-9d15-46a2-88cc-95d05aa21a64",
+  "files": [
+    ".json",
+    ".png"
+  ],
+  "subMetas": {
+    "6c48a": {
+      "importer": "texture",
+      "uuid": "e4da6f36-9d15-46a2-88cc-95d05aa21a64@6c48a",
+      "displayName": "icon_tog_help_2",
+      "id": "6c48a",
+      "name": "texture",
+      "userData": {
+        "wrapModeS": "clamp-to-edge",
+        "wrapModeT": "clamp-to-edge",
+        "imageUuidOrDatabaseUri": "e4da6f36-9d15-46a2-88cc-95d05aa21a64",
+        "isUuid": true,
+        "visible": false,
+        "minfilter": "linear",
+        "magfilter": "linear",
+        "mipfilter": "none",
+        "anisotropy": 0
+      },
+      "ver": "1.0.22",
+      "imported": true,
+      "files": [
+        ".json"
+      ],
+      "subMetas": {}
+    },
+    "f9941": {
+      "importer": "sprite-frame",
+      "uuid": "e4da6f36-9d15-46a2-88cc-95d05aa21a64@f9941",
+      "displayName": "icon_tog_help_2",
+      "id": "f9941",
+      "name": "spriteFrame",
+      "userData": {
+        "trimType": "auto",
+        "trimThreshold": 1,
+        "rotated": false,
+        "offsetX": 0,
+        "offsetY": 0,
+        "trimX": 0,
+        "trimY": 7,
+        "width": 80,
+        "height": 66,
+        "rawWidth": 80,
+        "rawHeight": 80,
+        "borderTop": 0,
+        "borderBottom": 0,
+        "borderLeft": 0,
+        "borderRight": 0,
+        "packable": true,
+        "pixelsToUnit": 100,
+        "pivotX": 0.5,
+        "pivotY": 0.5,
+        "meshType": 0,
+        "vertices": {
+          "rawPosition": [
+            -40,
+            -33,
+            0,
+            40,
+            -33,
+            0,
+            -40,
+            33,
+            0,
+            40,
+            33,
+            0
+          ],
+          "indexes": [
+            0,
+            1,
+            2,
+            2,
+            1,
+            3
+          ],
+          "uv": [
+            0,
+            73,
+            80,
+            73,
+            0,
+            7,
+            80,
+            7
+          ],
+          "nuv": [
+            0,
+            0.0875,
+            1,
+            0.0875,
+            0,
+            0.9125,
+            1,
+            0.9125
+          ],
+          "minPos": [
+            -40,
+            -33,
+            0
+          ],
+          "maxPos": [
+            40,
+            33,
+            0
+          ]
+        },
+        "isUuid": true,
+        "imageUuidOrDatabaseUri": "e4da6f36-9d15-46a2-88cc-95d05aa21a64@6c48a",
+        "atlasUuid": ""
+      },
+      "ver": "1.0.12",
+      "imported": true,
+      "files": [
+        ".json"
+      ],
+      "subMetas": {}
+    }
+  },
+  "userData": {
+    "type": "sprite-frame",
+    "hasAlpha": true,
+    "fixAlphaTransparencyArtifacts": false,
+    "redirect": "e4da6f36-9d15-46a2-88cc-95d05aa21a64@6c48a"
+  }
+}

BIN
assets/resources/texture/wallet/icon_tog_help_3.png


+ 134 - 0
assets/resources/texture/wallet/icon_tog_help_3.png.meta

@@ -0,0 +1,134 @@
+{
+  "ver": "1.0.27",
+  "importer": "image",
+  "imported": true,
+  "uuid": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d",
+  "files": [
+    ".json",
+    ".png"
+  ],
+  "subMetas": {
+    "6c48a": {
+      "importer": "texture",
+      "uuid": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d@6c48a",
+      "displayName": "icon_tog_help_3",
+      "id": "6c48a",
+      "name": "texture",
+      "userData": {
+        "wrapModeS": "clamp-to-edge",
+        "wrapModeT": "clamp-to-edge",
+        "imageUuidOrDatabaseUri": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d",
+        "isUuid": true,
+        "visible": false,
+        "minfilter": "linear",
+        "magfilter": "linear",
+        "mipfilter": "none",
+        "anisotropy": 0
+      },
+      "ver": "1.0.22",
+      "imported": true,
+      "files": [
+        ".json"
+      ],
+      "subMetas": {}
+    },
+    "f9941": {
+      "importer": "sprite-frame",
+      "uuid": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d@f9941",
+      "displayName": "icon_tog_help_3",
+      "id": "f9941",
+      "name": "spriteFrame",
+      "userData": {
+        "trimType": "auto",
+        "trimThreshold": 1,
+        "rotated": false,
+        "offsetX": 0,
+        "offsetY": 0,
+        "trimX": 7,
+        "trimY": 0,
+        "width": 66,
+        "height": 80,
+        "rawWidth": 80,
+        "rawHeight": 80,
+        "borderTop": 0,
+        "borderBottom": 0,
+        "borderLeft": 0,
+        "borderRight": 0,
+        "packable": true,
+        "pixelsToUnit": 100,
+        "pivotX": 0.5,
+        "pivotY": 0.5,
+        "meshType": 0,
+        "vertices": {
+          "rawPosition": [
+            -33,
+            -40,
+            0,
+            33,
+            -40,
+            0,
+            -33,
+            40,
+            0,
+            33,
+            40,
+            0
+          ],
+          "indexes": [
+            0,
+            1,
+            2,
+            2,
+            1,
+            3
+          ],
+          "uv": [
+            7,
+            80,
+            73,
+            80,
+            7,
+            0,
+            73,
+            0
+          ],
+          "nuv": [
+            0.0875,
+            0,
+            0.9125,
+            0,
+            0.0875,
+            1,
+            0.9125,
+            1
+          ],
+          "minPos": [
+            -33,
+            -40,
+            0
+          ],
+          "maxPos": [
+            33,
+            40,
+            0
+          ]
+        },
+        "isUuid": true,
+        "imageUuidOrDatabaseUri": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d@6c48a",
+        "atlasUuid": ""
+      },
+      "ver": "1.0.12",
+      "imported": true,
+      "files": [
+        ".json"
+      ],
+      "subMetas": {}
+    }
+  },
+  "userData": {
+    "type": "sprite-frame",
+    "hasAlpha": true,
+    "fixAlphaTransparencyArtifacts": false,
+    "redirect": "ab0a6ea0-1f45-47eb-970a-ed14d7c6c09d@6c48a"
+  }
+}