future 1 năm trước cách đây
mục cha
commit
80ff4c5ecc
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      assets/script/run/scene_layer.ts

+ 2 - 2
assets/script/run/scene_layer.ts

@@ -24,7 +24,7 @@ export class scene_layer extends Component {
     private mAudioList:Map<string,Node> = new Map;
     private up_id_string = '_up'
     private next_id_string = '_next'
-    private is_show_cur_directionBtn:boolean = true; //是否显示当前方向按钮,默认显示
+    private is_show_cur_directionBtn:boolean = false; //是否显示当前方向按钮,默认不显示
     protected start(): void {
         this.node.addComponent(AudioSource)
     }
@@ -50,7 +50,7 @@ export class scene_layer extends Component {
         this.mCurPage = 0
         this.mAudioList.clear()
         this.unscheduleAllCallbacks()
-        this.is_show_cur_directionBtn = true
+        this.is_show_cur_directionBtn = false
         ClientEvent.off(config.EventRun.NOTICE_EVENT,this.beActive.bind(this),this)
     }