コード例 #1
0
 public void Update(int dt)
 {
     if (m_timer != null)
     {
         m_timer.Update(dt);
     }
 }
コード例 #2
0
ファイル: GameObject.cs プロジェクト: NecroSharper/WCell
 public override void Update(int dt)
 {
     base.Update(dt);
     if (m_decayTimer != null)
     {
         m_decayTimer.Update(dt);
     }
 }
コード例 #3
0
ファイル: AreaAura.cs プロジェクト: 0xFh/Asda2-Project
 public void Update(int dt)
 {
     if (m_timer == null)
     {
         return;
     }
     m_timer.Update(dt);
 }
コード例 #4
0
 public override void Update(int dt)
 {
     base.Update(dt);
     if (m_decayTimer == null)
     {
         return;
     }
     m_decayTimer.Update(dt);
 }
コード例 #5
0
ファイル: SpellChannel.cs プロジェクト: NecroSharper/WCell
 public void Update(int dt)
 {
     if (m_timer == null)
     {
         log.Warn("SpellChannel is updated after disposal: {0}", this);
     }
     else
     {
         m_timer.Update(dt);
     }
 }
コード例 #6
0
ファイル: NPC.cs プロジェクト: 0xFh/Asda2-Project
        public override void Update(int dt)
        {
            if (m_decayTimer != null)
            {
                m_decayTimer.Update(dt);
            }

            if (m_target != null && CanMove)
            {
                // always face the target
                SetOrientationTowards(m_target);
            }

            base.Update(dt);
        }
コード例 #7
0
ファイル: BaseInstance.cs プロジェクト: 0xFh/Asda2-Project
 public void Update(int dt)
 {
     m_timeoutTimer.Update(dt);
 }
コード例 #8
0
 public void Update(int dt)
 {
     m_consumerTimer.Update(dt);
 }