future 1 år sedan
förälder
incheckning
5d9eaa0c17
3 ändrade filer med 6 tillägg och 3 borttagningar
  1. 1 1
      assets/scene/game.scene
  2. 1 1
      assets/script/config.ts
  3. 4 1
      assets/script/run/game_list_view/game_list.ts

+ 1 - 1
assets/scene/game.scene

@@ -14794,7 +14794,7 @@
     "_contentSize": {
       "__type__": "cc.Size",
       "width": 1080,
-      "height": 1920
+      "height": 1920.0000000000002
     },
     "_anchorPoint": {
       "__type__": "cc.Vec2",

+ 1 - 1
assets/script/config.ts

@@ -3,7 +3,7 @@ import { scene_item_data, widget_item_data } from '../data/data';
 const { ccclass, property } = _decorator;
 
 export class config {
-    static debug = true;
+    static debug = false;
     static is_zb = false; //是否是主播模式
     static gameName = "神秘的笔记";
     static select_res_and_control_type = {

+ 4 - 1
assets/script/run/game_list_view/game_list.ts

@@ -114,8 +114,11 @@ export class game_list extends Component {
                 let msg:LevelMessage  = JSON.parse(data)
                 this.initGameList(msg)
             }
-            this.onTouchActive = true
         })
+        this.unscheduleAllCallbacks()
+        this.scheduleOnce(()=> {
+            this.onTouchActive = true
+        },0.5)
     }
 
     onUpPage(){