greg 4 년 전
부모
커밋
a5295e6fd1
2개의 변경된 파일225개의 추가작업 그리고 140개의 파일을 삭제
  1. 221 136
      assets/resources/ui/FightingUI.prefab
  2. 4 4
      assets/scripts/games/ui/fightings/FightingMediator.ts

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 221 - 136
assets/resources/ui/FightingUI.prefab


+ 4 - 4
assets/scripts/games/ui/fightings/FightingMediator.ts

@@ -103,9 +103,9 @@ export class FightingMediator extends GUIMediator {
      * 怒气值技能按钮
      */
     @property({
-        type:ButtonComponent
+        type:Node
     })
-    angerSkillButton:ButtonComponent=null;
+    angerSkillButton:Node=null;
 
     /**
      * 栅栏血量进度条
@@ -387,9 +387,9 @@ export class FightingMediator extends GUIMediator {
      */
     RefreshAngerCount():void{
         if(GameModel.single.angerCount<GameController.single.weapon.weaponConfig.maxAnger){
-            this.angerSkillButton.node.active=false;
+            this.angerSkillButton.active=false;
         }else{
-            this.angerSkillButton.node.active=true;
+            this.angerSkillButton.active=true;
         }
         this.angerCountProgrssBar.progress=GameModel.single.angerCount/GameController.single.weapon.weaponConfig.maxAnger;
     }

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.