Compare commits

1 Commits
v2 ... main

Author SHA1 Message Date
c3b80943c2 支持上传logo 2026-05-19 14:17:46 +08:00
7 changed files with 16 additions and 16 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 202 KiB

View File

@@ -8376,7 +8376,7 @@
}, },
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 782, "width": 783,
"height": 754 "height": 754
}, },
"_anchorPoint": { "_anchorPoint": {
@@ -8418,7 +8418,7 @@
}, },
"_type": 0, "_type": 0,
"_fillType": 0, "_fillType": 0,
"_sizeMode": 1, "_sizeMode": 0,
"_fillCenter": { "_fillCenter": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
"x": 0, "x": 0,

View File

@@ -59,7 +59,6 @@ export class PageMain extends BaseView {
this.initRw() this.initRw()
this.startFloatingAnimation() this.startFloatingAnimation()
// 加载配置的logo // 加载配置的logo
if (USERDATA.logo && this.game_logo) { if (USERDATA.logo && this.game_logo) {
Tools.remoteLoadSprite(USERDATA.logo, this.game_logo) Tools.remoteLoadSprite(USERDATA.logo, this.game_logo)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 973 KiB

View File

@@ -42,11 +42,11 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0.5, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 782, "width": 783,
"height": 754, "height": 754,
"rawWidth": 783, "rawWidth": 783,
"rawHeight": 754, "rawHeight": 754,
@@ -61,16 +61,16 @@
"meshType": 0, "meshType": 0,
"vertices": { "vertices": {
"rawPosition": [ "rawPosition": [
-391, -391.5,
-377, -377,
0, 0,
391, 391.5,
-377, -377,
0, 0,
-391, -391.5,
377, 377,
0, 0,
391, 391.5,
377, 377,
0 0
], ],
@@ -83,32 +83,32 @@
3 3
], ],
"uv": [ "uv": [
1, 0,
754, 754,
783, 783,
754, 754,
1, 0,
0, 0,
783, 783,
0 0
], ],
"nuv": [ "nuv": [
0.001277139208173691, 0,
0, 0,
1, 1,
0, 0,
0.001277139208173691, 0,
1, 1,
1, 1,
1 1
], ],
"minPos": [ "minPos": [
-391, -391.5,
-377, -377,
0 0
], ],
"maxPos": [ "maxPos": [
391, 391.5,
377, 377,
0 0
] ]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 534 KiB

After

Width:  |  Height:  |  Size: 634 KiB

View File

@@ -12,6 +12,7 @@ class UserData {
public prize_list : any[] = []; public prize_list : any[] = [];
/** 游戏描述 */ /** 游戏描述 */
public description : string = ""; public description : string = "";
/* 游戏logo */ /* 游戏logo */
public logo : string = ""; public logo : string = "";
public logo_back : string = ""; public logo_back : string = "";