future 1 éve
szülő
commit
11a2cdea9f
27 módosított fájl, 410 hozzáadás és 1100 törlés
  1. 162 426
      assets/resources/ui/car_lib.prefab
  2. 25 4
      assets/resources/ui/tips_view.prefab
  3. 4 51
      assets/script/ui/car_lib/car_lib_bottom.ts
  4. 2 0
      assets/script/ui/car_lib/car_lib_top.ts
  5. BIN
      assets/texture/ui/car_lib/car_lib_jiashizhong.png
  6. 35 35
      assets/texture/ui/car_lib/car_lib_jiashizhong.png.meta
  7. BIN
      assets/texture/ui/car_lib/car_lib_jiesuo_select.png
  8. BIN
      assets/texture/ui/car_lib/car_lib_jiesuo_unselect.png
  9. 0 134
      assets/texture/ui/car_lib/car_lib_jiesuo_unselect.png.meta
  10. BIN
      assets/texture/ui/car_lib/car_lib_left.png
  11. 36 36
      assets/texture/ui/car_lib/car_lib_left.png.meta
  12. BIN
      assets/texture/ui/car_lib/car_lib_location.png
  13. 36 36
      assets/texture/ui/car_lib/car_lib_location.png.meta
  14. BIN
      assets/texture/ui/car_lib/car_lib_max_score.png
  15. 44 44
      assets/texture/ui/car_lib/car_lib_max_score.png.meta
  16. BIN
      assets/texture/ui/car_lib/car_lib_pai_bg.png
  17. 43 43
      assets/texture/ui/car_lib/car_lib_pai_bg.png.meta
  18. BIN
      assets/texture/ui/car_lib/car_lib_right.png
  19. BIN
      assets/texture/ui/car_lib/car_lib_score_down.png
  20. 0 134
      assets/texture/ui/car_lib/car_lib_score_down.png.meta
  21. BIN
      assets/texture/ui/car_lib/car_lib_score_up.png
  22. 0 134
      assets/texture/ui/car_lib/car_lib_score_up.png.meta
  23. BIN
      assets/texture/ui/car_lib/car_lib_title.png
  24. 10 10
      assets/texture/ui/car_lib/car_lib_title.png.meta
  25. BIN
      assets/texture/ui/car_lib/car_lib_user_bg.png
  26. 11 11
      assets/texture/ui/car_lib/car_lib_user_bg.png.meta
  27. 2 2
      settings/v2/packages/information.json

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 162 - 426
assets/resources/ui/car_lib.prefab


+ 25 - 4
assets/resources/ui/tips_view.prefab

@@ -38,10 +38,13 @@
       },
       {
         "__id__": 46
+      },
+      {
+        "__id__": 48
       }
     ],
     "_prefab": {
-      "__id__": 48
+      "__id__": 50
     },
     "_lpos": {
       "__type__": "cc.Vec3",
@@ -140,7 +143,7 @@
     "_contentSize": {
       "__type__": "cc.Size",
       "width": 1080,
-      "height": 1920
+      "height": 1919.9999999999998
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",
@@ -910,7 +913,7 @@
     },
     "_type": 0,
     "_fillType": 0,
-    "_sizeMode": 1,
+    "_sizeMode": 0,
     "_fillCenter": {
       "__type__": "cc.Vec2",
       "x": 0,
@@ -1011,7 +1014,7 @@
     "_contentSize": {
       "__type__": "cc.Size",
       "width": 1080,
-      "height": 1920
+      "height": 1919.9999999999998
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",
@@ -1084,6 +1087,24 @@
     "__type__": "cc.CompPrefabInfo",
     "fileId": "67v8NQ4atFvK+04HNlXmda"
   },
+  {
+    "__type__": "cc.BlockInputEvents",
+    "_name": "",
+    "_objFlags": 0,
+    "__editorExtras__": {},
+    "node": {
+      "__id__": 1
+    },
+    "_enabled": true,
+    "__prefab": {
+      "__id__": 49
+    },
+    "_id": ""
+  },
+  {
+    "__type__": "cc.CompPrefabInfo",
+    "fileId": "dfpmd1B/5M+5idBbcHBU1K"
+  },
   {
     "__type__": "cc.PrefabInfo",
     "root": {

+ 4 - 51
assets/script/ui/car_lib/car_lib_bottom.ts

@@ -11,19 +11,11 @@ export class car_lib_bottom extends base_ui {
     @property(Node) btn_num_left:Node = null
     @property(Node) btn_num_right:Node = null
     @property(Node) lab_num:Node = null
-    @property(Node) btn_score_sort:Node = null
-    @property(SpriteFrame) sf_score_up:SpriteFrame = null
-    @property(SpriteFrame) sf_score_down:SpriteFrame = null
-    @property(Node) btn_jiesuo:Node = null
-    @property(SpriteFrame) sf_jiesuo_select:SpriteFrame = null
-    @property(SpriteFrame) sf_jiesuo_unselect:SpriteFrame = null
     @property(Node) list:Node = null
     @property(Node) list_content:Node = null
     @property(Prefab) list_item:Prefab = null
 
     private data_list:car_item_data[] = []
-    private is_sort_up_status:boolean = true
-    private is_jiesuo_status:boolean = false
     private num_current_count:number = 1
     private num_total_count:number = 1
     private current_select_list_item:car_lib_list_item = null
@@ -44,15 +36,7 @@ export class car_lib_bottom extends base_ui {
             }
             this.num_current_count +=1
             this.updateNumStatus(true)
-        })
-        this.onButtonListen(this.btn_score_sort, ()=>{
-            this.is_sort_up_status = !this.is_sort_up_status
-            this.updateSortStatus(true)
-        })
-        this.onButtonListen(this.btn_jiesuo, ()=>{
-            this.is_jiesuo_status = !this.is_jiesuo_status
-            this.updateJiesuoStatus(true)
-        })        
+        })    
     }
 
     public init(click_item_cb) {
@@ -61,8 +45,7 @@ export class car_lib_bottom extends base_ui {
 
         // this.data_list = JSON.parse(JSON.stringify(tools.all_car_list))
         this.data_list = tools.all_car_page_list[this.getNumCurrentIndex()]
-        this.updateSortStatus()
-        this.updateJiesuoStatus()
+        console.log('this.data_list=',this.data_list)
         this.updateNumStatus()
         this.reloadListContentData()
 
@@ -84,29 +67,6 @@ export class car_lib_bottom extends base_ui {
         return index
     }
 
-    updateSortStatus(is_load_data:boolean=false) {
-        if(this.is_sort_up_status) {
-            this.btn_score_sort.getComponent(Sprite).spriteFrame = this.sf_score_down
-        } else {
-            this.btn_score_sort.getComponent(Sprite).spriteFrame = this.sf_score_up
-        }
-        if(is_load_data) {
-            this.data_list = this.data_list.reverse()
-            this.reloadListContentData()
-        }
-    }
-
-    updateJiesuoStatus(is_load_data:boolean=false) {
-        if(this.is_jiesuo_status) {
-            this.btn_jiesuo.getComponent(Sprite).spriteFrame = this.sf_jiesuo_select
-        } else {
-            this.btn_jiesuo.getComponent(Sprite).spriteFrame = this.sf_jiesuo_unselect
-        }
-        if(is_load_data) {
-            this.reloadListContentData()
-        }
-    }
-
     updateNumStatus(is_reload_data:boolean=false) {
         this.lab_num.getComponent(Label).string = this.num_current_count + '/' + this.num_total_count
         if(is_reload_data) {
@@ -122,14 +82,7 @@ export class car_lib_bottom extends base_ui {
         for (let index = 0; index < this.data_list.length; index++) {
             const element = this.data_list[index];
             let is_jiesuo = userDataManager.user_car_list.car_list.some(obj => obj === element.id)
-            let item = null
-            if(this.is_jiesuo_status) {
-                if(is_jiesuo) {
-                    item = instantiate(this.list_item)
-                }
-            } else {
-                item = instantiate(this.list_item)
-            }
+            let item = instantiate(this.list_item)
             if(item!=null) {
                 item.parent = this.list_content
                 let item_component = item.getComponent(car_lib_list_item)
@@ -157,7 +110,7 @@ export class car_lib_bottom extends base_ui {
         }
         
         if(item.getIsJiesuo()==false) {
-            console.log('解锁 解锁 解锁')
+            console.log('解锁 解锁 解锁')
             return
         }
 

+ 2 - 0
assets/script/ui/car_lib/car_lib_top.ts

@@ -16,6 +16,7 @@ export class car_lib_top extends Component {
     @property(Node) lab_car_pai:Node = null
     @property(Node) btn_region:Node = null
     @property(Node) lab_region:Node = null
+    @property(Node) lab_max_score:Node = null
     @property(Node) img_car:Node = null
 
     protected start(): void {
@@ -42,6 +43,7 @@ export class car_lib_top extends Component {
         }
         this.lab_car_pai.getComponent(Label).string = user_data.license_code
         this.lab_region.getComponent(Label).string = user_data.province_name + ' - ' + user_data.city_name
+        this.lab_max_score.getComponent(Label).string = userDataManager.user_car_list.max_integral + '分'
         this.reloadUserCar()
     }
 

BIN
assets/texture/ui/car_lib/car_lib_jiashizhong.png


+ 35 - 35
assets/texture/ui/car_lib/car_lib_jiashizhong.png.meta

@@ -43,13 +43,13 @@
         "trimThreshold": 1,
         "rotated": false,
         "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 2,
-        "trimY": 2,
-        "width": 233,
-        "height": 73,
-        "rawWidth": 237,
-        "rawHeight": 77,
+        "offsetY": 0.5,
+        "trimX": 0,
+        "trimY": 0,
+        "width": 201,
+        "height": 77,
+        "rawWidth": 201,
+        "rawHeight": 78,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -61,17 +61,17 @@
         "meshType": 0,
         "vertices": {
           "rawPosition": [
-            -116.5,
-            -36.5,
+            -100.5,
+            -38.5,
             0,
-            116.5,
-            -36.5,
+            100.5,
+            -38.5,
             0,
-            -116.5,
-            36.5,
+            -100.5,
+            38.5,
             0,
-            116.5,
-            36.5,
+            100.5,
+            38.5,
             0
           ],
           "indexes": [
@@ -83,33 +83,33 @@
             3
           ],
           "uv": [
-            2,
-            75,
-            235,
-            75,
-            2,
-            2,
-            235,
-            2
+            0,
+            78,
+            201,
+            78,
+            0,
+            1,
+            201,
+            1
           ],
           "nuv": [
-            0.008438818565400843,
-            0.025974025974025976,
-            0.9915611814345991,
-            0.025974025974025976,
-            0.008438818565400843,
-            0.974025974025974,
-            0.9915611814345991,
-            0.974025974025974
+            0,
+            0.01282051282051282,
+            1,
+            0.01282051282051282,
+            0,
+            1,
+            1,
+            1
           ],
           "minPos": [
-            -116.5,
-            -36.5,
+            -100.5,
+            -38.5,
             0
           ],
           "maxPos": [
-            116.5,
-            36.5,
+            100.5,
+            38.5,
             0
           ]
         },

BIN
assets/texture/ui/car_lib/car_lib_jiesuo_select.png


BIN
assets/texture/ui/car_lib/car_lib_jiesuo_unselect.png


+ 0 - 134
assets/texture/ui/car_lib/car_lib_jiesuo_unselect.png.meta

@@ -1,134 +0,0 @@
-{
-  "ver": "1.0.26",
-  "importer": "image",
-  "imported": true,
-  "uuid": "b1bd300f-37ee-4bfe-9648-2cbd012a8397",
-  "files": [
-    ".json",
-    ".png"
-  ],
-  "subMetas": {
-    "6c48a": {
-      "importer": "texture",
-      "uuid": "b1bd300f-37ee-4bfe-9648-2cbd012a8397@6c48a",
-      "displayName": "car_lib_jiesuo_unselect",
-      "id": "6c48a",
-      "name": "texture",
-      "userData": {
-        "wrapModeS": "clamp-to-edge",
-        "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "b1bd300f-37ee-4bfe-9648-2cbd012a8397",
-        "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": "b1bd300f-37ee-4bfe-9648-2cbd012a8397@f9941",
-      "displayName": "car_lib_jiesuo_unselect",
-      "id": "f9941",
-      "name": "spriteFrame",
-      "userData": {
-        "trimType": "auto",
-        "trimThreshold": 1,
-        "rotated": false,
-        "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 0,
-        "trimY": 0,
-        "width": 202,
-        "height": 70,
-        "rawWidth": 202,
-        "rawHeight": 70,
-        "borderTop": 0,
-        "borderBottom": 0,
-        "borderLeft": 0,
-        "borderRight": 0,
-        "packable": true,
-        "pixelsToUnit": 100,
-        "pivotX": 0.5,
-        "pivotY": 0.5,
-        "meshType": 0,
-        "vertices": {
-          "rawPosition": [
-            -101,
-            -35,
-            0,
-            101,
-            -35,
-            0,
-            -101,
-            35,
-            0,
-            101,
-            35,
-            0
-          ],
-          "indexes": [
-            0,
-            1,
-            2,
-            2,
-            1,
-            3
-          ],
-          "uv": [
-            0,
-            70,
-            202,
-            70,
-            0,
-            0,
-            202,
-            0
-          ],
-          "nuv": [
-            0,
-            0,
-            1,
-            0,
-            0,
-            1,
-            1,
-            1
-          ],
-          "minPos": [
-            -101,
-            -35,
-            0
-          ],
-          "maxPos": [
-            101,
-            35,
-            0
-          ]
-        },
-        "isUuid": true,
-        "imageUuidOrDatabaseUri": "b1bd300f-37ee-4bfe-9648-2cbd012a8397@6c48a",
-        "atlasUuid": ""
-      },
-      "ver": "1.0.12",
-      "imported": true,
-      "files": [
-        ".json"
-      ],
-      "subMetas": {}
-    }
-  },
-  "userData": {
-    "type": "sprite-frame",
-    "hasAlpha": true,
-    "fixAlphaTransparencyArtifacts": false,
-    "redirect": "b1bd300f-37ee-4bfe-9648-2cbd012a8397@f9941"
-  }
-}

BIN
assets/texture/ui/car_lib/car_lib_left.png


+ 36 - 36
assets/texture/ui/car_lib/car_lib_left.png.meta

@@ -42,14 +42,14 @@
         "trimType": "auto",
         "trimThreshold": 1,
         "rotated": false,
-        "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 0,
-        "trimY": 0,
-        "width": 32,
-        "height": 47,
-        "rawWidth": 32,
-        "rawHeight": 47,
+        "offsetX": -0.5,
+        "offsetY": -2.5,
+        "trimX": 27,
+        "trimY": 17,
+        "width": 48,
+        "height": 70,
+        "rawWidth": 103,
+        "rawHeight": 99,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -61,17 +61,17 @@
         "meshType": 0,
         "vertices": {
           "rawPosition": [
-            -16,
-            -23.5,
+            -24,
+            -35,
             0,
-            16,
-            -23.5,
+            24,
+            -35,
             0,
-            -16,
-            23.5,
+            -24,
+            35,
             0,
-            16,
-            23.5,
+            24,
+            35,
             0
           ],
           "indexes": [
@@ -83,33 +83,33 @@
             3
           ],
           "uv": [
-            0,
-            47,
-            32,
-            47,
-            0,
-            0,
-            32,
-            0
+            27,
+            82,
+            75,
+            82,
+            27,
+            12,
+            75,
+            12
           ],
           "nuv": [
-            0,
-            0,
-            1,
-            0,
-            0,
-            1,
-            1,
-            1
+            0.2621359223300971,
+            0.12121212121212122,
+            0.7281553398058253,
+            0.12121212121212122,
+            0.2621359223300971,
+            0.8282828282828283,
+            0.7281553398058253,
+            0.8282828282828283
           ],
           "minPos": [
-            -16,
-            -23.5,
+            -24,
+            -35,
             0
           ],
           "maxPos": [
-            16,
-            23.5,
+            24,
+            35,
             0
           ]
         },

BIN
assets/texture/ui/car_lib/car_lib_location.png


+ 36 - 36
assets/texture/ui/car_lib/car_lib_location.png.meta

@@ -42,14 +42,14 @@
         "trimType": "auto",
         "trimThreshold": 1,
         "rotated": false,
-        "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 0,
-        "trimY": 0,
-        "width": 44,
-        "height": 38,
-        "rawWidth": 44,
-        "rawHeight": 38,
+        "offsetX": -0.5,
+        "offsetY": -2.5,
+        "trimX": 31,
+        "trimY": 35,
+        "width": 40,
+        "height": 34,
+        "rawWidth": 103,
+        "rawHeight": 99,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -61,17 +61,17 @@
         "meshType": 0,
         "vertices": {
           "rawPosition": [
-            -22,
-            -19,
+            -20,
+            -17,
             0,
-            22,
-            -19,
+            20,
+            -17,
             0,
-            -22,
-            19,
+            -20,
+            17,
             0,
-            22,
-            19,
+            20,
+            17,
             0
           ],
           "indexes": [
@@ -83,33 +83,33 @@
             3
           ],
           "uv": [
-            0,
-            38,
-            44,
-            38,
-            0,
-            0,
-            44,
-            0
+            31,
+            64,
+            71,
+            64,
+            31,
+            30,
+            71,
+            30
           ],
           "nuv": [
-            0,
-            0,
-            1,
-            0,
-            0,
-            1,
-            1,
-            1
+            0.30097087378640774,
+            0.30303030303030304,
+            0.6893203883495146,
+            0.30303030303030304,
+            0.30097087378640774,
+            0.6464646464646465,
+            0.6893203883495146,
+            0.6464646464646465
           ],
           "minPos": [
-            -22,
-            -19,
+            -20,
+            -17,
             0
           ],
           "maxPos": [
-            22,
-            19,
+            20,
+            17,
             0
           ]
         },

BIN
assets/texture/ui/car_lib/car_lib_max_score.png


+ 44 - 44
assets/texture/ui/car_lib/car_lib_jiesuo_select.png.meta → assets/texture/ui/car_lib/car_lib_max_score.png.meta

@@ -2,7 +2,7 @@
   "ver": "1.0.26",
   "importer": "image",
   "imported": true,
-  "uuid": "fd60d1c7-8a62-41d2-b3fa-3dea49199761",
+  "uuid": "d1cd7437-9013-4a1e-94e9-27025bbbbf66",
   "files": [
     ".json",
     ".png"
@@ -10,14 +10,14 @@
   "subMetas": {
     "6c48a": {
       "importer": "texture",
-      "uuid": "fd60d1c7-8a62-41d2-b3fa-3dea49199761@6c48a",
-      "displayName": "car_lib_jiesuo_select",
+      "uuid": "d1cd7437-9013-4a1e-94e9-27025bbbbf66@6c48a",
+      "displayName": "car_lib_max_score",
       "id": "6c48a",
       "name": "texture",
       "userData": {
         "wrapModeS": "clamp-to-edge",
         "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "fd60d1c7-8a62-41d2-b3fa-3dea49199761",
+        "imageUuidOrDatabaseUri": "d1cd7437-9013-4a1e-94e9-27025bbbbf66",
         "isUuid": true,
         "visible": false,
         "minfilter": "linear",
@@ -34,22 +34,22 @@
     },
     "f9941": {
       "importer": "sprite-frame",
-      "uuid": "fd60d1c7-8a62-41d2-b3fa-3dea49199761@f9941",
-      "displayName": "car_lib_jiesuo_select",
+      "uuid": "d1cd7437-9013-4a1e-94e9-27025bbbbf66@f9941",
+      "displayName": "car_lib_max_score",
       "id": "f9941",
       "name": "spriteFrame",
       "userData": {
         "trimType": "auto",
         "trimThreshold": 1,
         "rotated": false,
-        "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 0,
-        "trimY": 0,
-        "width": 202,
-        "height": 70,
-        "rawWidth": 202,
-        "rawHeight": 70,
+        "offsetX": -8.5,
+        "offsetY": -1,
+        "trimX": 8,
+        "trimY": 10,
+        "width": 319,
+        "height": 153,
+        "rawWidth": 352,
+        "rawHeight": 171,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -61,17 +61,17 @@
         "meshType": 0,
         "vertices": {
           "rawPosition": [
-            -101,
-            -35,
+            -159.5,
+            -76.5,
             0,
-            101,
-            -35,
+            159.5,
+            -76.5,
             0,
-            -101,
-            35,
+            -159.5,
+            76.5,
             0,
-            101,
-            35,
+            159.5,
+            76.5,
             0
           ],
           "indexes": [
@@ -83,38 +83,38 @@
             3
           ],
           "uv": [
-            0,
-            70,
-            202,
-            70,
-            0,
-            0,
-            202,
-            0
+            8,
+            161,
+            327,
+            161,
+            8,
+            8,
+            327,
+            8
           ],
           "nuv": [
-            0,
-            0,
-            1,
-            0,
-            0,
-            1,
-            1,
-            1
+            0.022727272727272728,
+            0.04678362573099415,
+            0.9289772727272727,
+            0.04678362573099415,
+            0.022727272727272728,
+            0.9415204678362573,
+            0.9289772727272727,
+            0.9415204678362573
           ],
           "minPos": [
-            -101,
-            -35,
+            -159.5,
+            -76.5,
             0
           ],
           "maxPos": [
-            101,
-            35,
+            159.5,
+            76.5,
             0
           ]
         },
         "isUuid": true,
-        "imageUuidOrDatabaseUri": "fd60d1c7-8a62-41d2-b3fa-3dea49199761@6c48a",
+        "imageUuidOrDatabaseUri": "d1cd7437-9013-4a1e-94e9-27025bbbbf66@6c48a",
         "atlasUuid": ""
       },
       "ver": "1.0.12",
@@ -129,6 +129,6 @@
     "type": "sprite-frame",
     "hasAlpha": true,
     "fixAlphaTransparencyArtifacts": false,
-    "redirect": "fd60d1c7-8a62-41d2-b3fa-3dea49199761@f9941"
+    "redirect": "d1cd7437-9013-4a1e-94e9-27025bbbbf66@f9941"
   }
 }

BIN
assets/texture/ui/car_lib/car_lib_pai_bg.png


+ 43 - 43
assets/texture/ui/car_lib/car_lib_right.png.meta → assets/texture/ui/car_lib/car_lib_pai_bg.png.meta

@@ -2,7 +2,7 @@
   "ver": "1.0.26",
   "importer": "image",
   "imported": true,
-  "uuid": "a104a5d8-73d5-4485-bc91-f3b74e3288e3",
+  "uuid": "8efd027e-380a-4a1e-ae4e-c73232c2bdf9",
   "files": [
     ".json",
     ".png"
@@ -10,14 +10,14 @@
   "subMetas": {
     "6c48a": {
       "importer": "texture",
-      "uuid": "a104a5d8-73d5-4485-bc91-f3b74e3288e3@6c48a",
-      "displayName": "car_lib_right",
+      "uuid": "8efd027e-380a-4a1e-ae4e-c73232c2bdf9@6c48a",
+      "displayName": "car_lib_pai_bg",
       "id": "6c48a",
       "name": "texture",
       "userData": {
         "wrapModeS": "clamp-to-edge",
         "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "a104a5d8-73d5-4485-bc91-f3b74e3288e3",
+        "imageUuidOrDatabaseUri": "8efd027e-380a-4a1e-ae4e-c73232c2bdf9",
         "isUuid": true,
         "visible": false,
         "minfilter": "linear",
@@ -34,22 +34,22 @@
     },
     "f9941": {
       "importer": "sprite-frame",
-      "uuid": "a104a5d8-73d5-4485-bc91-f3b74e3288e3@f9941",
-      "displayName": "car_lib_right",
+      "uuid": "8efd027e-380a-4a1e-ae4e-c73232c2bdf9@f9941",
+      "displayName": "car_lib_pai_bg",
       "id": "f9941",
       "name": "spriteFrame",
       "userData": {
         "trimType": "auto",
         "trimThreshold": 1,
         "rotated": false,
-        "offsetX": 0,
+        "offsetX": 1,
         "offsetY": 0,
-        "trimX": 0,
-        "trimY": 1,
-        "width": 32,
-        "height": 45,
-        "rawWidth": 32,
-        "rawHeight": 47,
+        "trimX": 9,
+        "trimY": 7,
+        "width": 327,
+        "height": 121,
+        "rawWidth": 343,
+        "rawHeight": 135,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -61,17 +61,17 @@
         "meshType": 0,
         "vertices": {
           "rawPosition": [
-            -16,
-            -22.5,
+            -163.5,
+            -60.5,
             0,
-            16,
-            -22.5,
+            163.5,
+            -60.5,
             0,
-            -16,
-            22.5,
+            -163.5,
+            60.5,
             0,
-            16,
-            22.5,
+            163.5,
+            60.5,
             0
           ],
           "indexes": [
@@ -83,38 +83,38 @@
             3
           ],
           "uv": [
-            0,
-            46,
-            32,
-            46,
-            0,
-            1,
-            32,
-            1
+            9,
+            128,
+            336,
+            128,
+            9,
+            7,
+            336,
+            7
           ],
           "nuv": [
-            0,
-            0.02127659574468085,
-            1,
-            0.02127659574468085,
-            0,
-            0.9787234042553191,
-            1,
-            0.9787234042553191
+            0.026239067055393587,
+            0.05185185185185185,
+            0.9795918367346939,
+            0.05185185185185185,
+            0.026239067055393587,
+            0.9481481481481482,
+            0.9795918367346939,
+            0.9481481481481482
           ],
           "minPos": [
-            -16,
-            -22.5,
+            -163.5,
+            -60.5,
             0
           ],
           "maxPos": [
-            16,
-            22.5,
+            163.5,
+            60.5,
             0
           ]
         },
         "isUuid": true,
-        "imageUuidOrDatabaseUri": "a104a5d8-73d5-4485-bc91-f3b74e3288e3@6c48a",
+        "imageUuidOrDatabaseUri": "8efd027e-380a-4a1e-ae4e-c73232c2bdf9@6c48a",
         "atlasUuid": ""
       },
       "ver": "1.0.12",
@@ -129,6 +129,6 @@
     "type": "sprite-frame",
     "hasAlpha": true,
     "fixAlphaTransparencyArtifacts": false,
-    "redirect": "a104a5d8-73d5-4485-bc91-f3b74e3288e3@f9941"
+    "redirect": "8efd027e-380a-4a1e-ae4e-c73232c2bdf9@f9941"
   }
 }

BIN
assets/texture/ui/car_lib/car_lib_right.png


BIN
assets/texture/ui/car_lib/car_lib_score_down.png


+ 0 - 134
assets/texture/ui/car_lib/car_lib_score_down.png.meta

@@ -1,134 +0,0 @@
-{
-  "ver": "1.0.26",
-  "importer": "image",
-  "imported": true,
-  "uuid": "e36e189a-fbf8-48d9-9120-fda4f108d34e",
-  "files": [
-    ".json",
-    ".png"
-  ],
-  "subMetas": {
-    "6c48a": {
-      "importer": "texture",
-      "uuid": "e36e189a-fbf8-48d9-9120-fda4f108d34e@6c48a",
-      "displayName": "car_lib_score_down",
-      "id": "6c48a",
-      "name": "texture",
-      "userData": {
-        "wrapModeS": "clamp-to-edge",
-        "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "e36e189a-fbf8-48d9-9120-fda4f108d34e",
-        "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": "e36e189a-fbf8-48d9-9120-fda4f108d34e@f9941",
-      "displayName": "car_lib_score_down",
-      "id": "f9941",
-      "name": "spriteFrame",
-      "userData": {
-        "trimType": "auto",
-        "trimThreshold": 1,
-        "rotated": false,
-        "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 0,
-        "trimY": 0,
-        "width": 283,
-        "height": 84,
-        "rawWidth": 283,
-        "rawHeight": 84,
-        "borderTop": 0,
-        "borderBottom": 0,
-        "borderLeft": 0,
-        "borderRight": 0,
-        "packable": true,
-        "pixelsToUnit": 100,
-        "pivotX": 0.5,
-        "pivotY": 0.5,
-        "meshType": 0,
-        "vertices": {
-          "rawPosition": [
-            -141.5,
-            -42,
-            0,
-            141.5,
-            -42,
-            0,
-            -141.5,
-            42,
-            0,
-            141.5,
-            42,
-            0
-          ],
-          "indexes": [
-            0,
-            1,
-            2,
-            2,
-            1,
-            3
-          ],
-          "uv": [
-            0,
-            84,
-            283,
-            84,
-            0,
-            0,
-            283,
-            0
-          ],
-          "nuv": [
-            0,
-            0,
-            1,
-            0,
-            0,
-            1,
-            1,
-            1
-          ],
-          "minPos": [
-            -141.5,
-            -42,
-            0
-          ],
-          "maxPos": [
-            141.5,
-            42,
-            0
-          ]
-        },
-        "isUuid": true,
-        "imageUuidOrDatabaseUri": "e36e189a-fbf8-48d9-9120-fda4f108d34e@6c48a",
-        "atlasUuid": ""
-      },
-      "ver": "1.0.12",
-      "imported": true,
-      "files": [
-        ".json"
-      ],
-      "subMetas": {}
-    }
-  },
-  "userData": {
-    "type": "sprite-frame",
-    "hasAlpha": true,
-    "fixAlphaTransparencyArtifacts": false,
-    "redirect": "e36e189a-fbf8-48d9-9120-fda4f108d34e@f9941"
-  }
-}

BIN
assets/texture/ui/car_lib/car_lib_score_up.png


+ 0 - 134
assets/texture/ui/car_lib/car_lib_score_up.png.meta

@@ -1,134 +0,0 @@
-{
-  "ver": "1.0.26",
-  "importer": "image",
-  "imported": true,
-  "uuid": "e7c25ef4-3e5b-4e8a-8144-99004196a359",
-  "files": [
-    ".json",
-    ".png"
-  ],
-  "subMetas": {
-    "6c48a": {
-      "importer": "texture",
-      "uuid": "e7c25ef4-3e5b-4e8a-8144-99004196a359@6c48a",
-      "displayName": "car_lib_score_up",
-      "id": "6c48a",
-      "name": "texture",
-      "userData": {
-        "wrapModeS": "clamp-to-edge",
-        "wrapModeT": "clamp-to-edge",
-        "imageUuidOrDatabaseUri": "e7c25ef4-3e5b-4e8a-8144-99004196a359",
-        "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": "e7c25ef4-3e5b-4e8a-8144-99004196a359@f9941",
-      "displayName": "car_lib_score_up",
-      "id": "f9941",
-      "name": "spriteFrame",
-      "userData": {
-        "trimType": "auto",
-        "trimThreshold": 1,
-        "rotated": false,
-        "offsetX": 0,
-        "offsetY": 0,
-        "trimX": 0,
-        "trimY": 0,
-        "width": 283,
-        "height": 84,
-        "rawWidth": 283,
-        "rawHeight": 84,
-        "borderTop": 0,
-        "borderBottom": 0,
-        "borderLeft": 0,
-        "borderRight": 0,
-        "packable": true,
-        "pixelsToUnit": 100,
-        "pivotX": 0.5,
-        "pivotY": 0.5,
-        "meshType": 0,
-        "vertices": {
-          "rawPosition": [
-            -141.5,
-            -42,
-            0,
-            141.5,
-            -42,
-            0,
-            -141.5,
-            42,
-            0,
-            141.5,
-            42,
-            0
-          ],
-          "indexes": [
-            0,
-            1,
-            2,
-            2,
-            1,
-            3
-          ],
-          "uv": [
-            0,
-            84,
-            283,
-            84,
-            0,
-            0,
-            283,
-            0
-          ],
-          "nuv": [
-            0,
-            0,
-            1,
-            0,
-            0,
-            1,
-            1,
-            1
-          ],
-          "minPos": [
-            -141.5,
-            -42,
-            0
-          ],
-          "maxPos": [
-            141.5,
-            42,
-            0
-          ]
-        },
-        "isUuid": true,
-        "imageUuidOrDatabaseUri": "e7c25ef4-3e5b-4e8a-8144-99004196a359@6c48a",
-        "atlasUuid": ""
-      },
-      "ver": "1.0.12",
-      "imported": true,
-      "files": [
-        ".json"
-      ],
-      "subMetas": {}
-    }
-  },
-  "userData": {
-    "type": "sprite-frame",
-    "hasAlpha": true,
-    "fixAlphaTransparencyArtifacts": false,
-    "redirect": "e7c25ef4-3e5b-4e8a-8144-99004196a359@f9941"
-  }
-}

BIN
assets/texture/ui/car_lib/car_lib_title.png


+ 10 - 10
assets/texture/ui/car_lib/car_lib_title.png.meta

@@ -47,9 +47,9 @@
         "trimX": 0,
         "trimY": 0,
         "width": 1080,
-        "height": 329,
+        "height": 291,
         "rawWidth": 1080,
-        "rawHeight": 329,
+        "rawHeight": 291,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -62,16 +62,16 @@
         "vertices": {
           "rawPosition": [
             -540,
-            -164.5,
+            -145.5,
             0,
             540,
-            -164.5,
+            -145.5,
             0,
             -540,
-            164.5,
+            145.5,
             0,
             540,
-            164.5,
+            145.5,
             0
           ],
           "indexes": [
@@ -84,9 +84,9 @@
           ],
           "uv": [
             0,
-            329,
+            291,
             1080,
-            329,
+            291,
             0,
             0,
             1080,
@@ -104,12 +104,12 @@
           ],
           "minPos": [
             -540,
-            -164.5,
+            -145.5,
             0
           ],
           "maxPos": [
             540,
-            164.5,
+            145.5,
             0
           ]
         },

BIN
assets/texture/ui/car_lib/car_lib_user_bg.png


+ 11 - 11
assets/texture/ui/car_lib/car_lib_user_bg.png.meta

@@ -47,9 +47,9 @@
         "trimX": 0,
         "trimY": 0,
         "width": 1080,
-        "height": 122,
+        "height": 183,
         "rawWidth": 1080,
-        "rawHeight": 122,
+        "rawHeight": 183,
         "borderTop": 0,
         "borderBottom": 0,
         "borderLeft": 0,
@@ -62,16 +62,16 @@
         "vertices": {
           "rawPosition": [
             -540,
-            -61,
+            -91.5,
             0,
             540,
-            -61,
+            -91.5,
             0,
             -540,
-            61,
+            91.5,
             0,
             540,
-            61,
+            91.5,
             0
           ],
           "indexes": [
@@ -84,9 +84,9 @@
           ],
           "uv": [
             0,
-            122,
+            183,
             1080,
-            122,
+            183,
             0,
             0,
             1080,
@@ -104,12 +104,12 @@
           ],
           "minPos": [
             -540,
-            -61,
+            -91.5,
             0
           ],
           "maxPos": [
             540,
-            61,
+            91.5,
             0
           ]
         },
@@ -127,7 +127,7 @@
   },
   "userData": {
     "type": "sprite-frame",
-    "hasAlpha": false,
+    "hasAlpha": true,
     "fixAlphaTransparencyArtifacts": false,
     "redirect": "60f8eaa9-c7f3-4cd1-a18d-19c7f5f25639@f9941"
   }

+ 2 - 2
settings/v2/packages/information.json

@@ -7,7 +7,7 @@
       "enable": true,
       "customSplash": {
         "complete": true,
-        "form": "https://creator-api.cocos.com/api/form/show?sid=03d76cb652aad5a52ddc8d5cc6571dac"
+        "form": "https://creator-api.cocos.com/api/form/show?sid=8e125ea0415dad462fae4bbdd116626f"
       }
     },
     "removeSplash": {
@@ -16,7 +16,7 @@
       "enable": true,
       "removeSplash": {
         "complete": true,
-        "form": "https://creator-api.cocos.com/api/form/show?sid=03d76cb652aad5a52ddc8d5cc6571dac"
+        "form": "https://creator-api.cocos.com/api/form/show?sid=8e125ea0415dad462fae4bbdd116626f"
       }
     }
   }

Nem az összes módosított fájl került megjelenítésre, mert túl sok fájl változott