示例#1
0
 // Token: 0x06003791 RID: 14225 RVA: 0x000FA358 File Offset: 0x000F8558
 public void OnActorCastPassiveSkill(CombatActor a, BuffState sourceBuffState)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_OnActorCastPassiveSkillCombatActorBuffState_hotfix != null)
     {
         this.m_OnActorCastPassiveSkillCombatActorBuffState_hotfix.call(new object[]
         {
             this,
             a,
             sourceBuffState
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     if (a == null || sourceBuffState == null)
     {
         return;
     }
     this.Pause(true);
     this.m_teams[a.TeamNumber].SetGraphicSkillFade(true);
     this.m_cutscenePauseCountdown = Combat.MillisecondToFrame1(this.ConfigDataLoader.Const_SkillPauseTime);
     this.m_battle.Listener.OnStartPassiveSkillCutscene(sourceBuffState, a.TeamNumber);
 }
示例#2
0
 // Token: 0x06003483 RID: 13443 RVA: 0x000DF6D8 File Offset: 0x000DD8D8
 public LuaExportHelper(BuffState owner)
 {
     this.m_owner = owner;
 }