future 1 년 전
부모
커밋
80ff4c5ecc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)
     }