コード例 #1
0
ファイル: Mobile.cs プロジェクト: uotools/PlayUO
 public void EquipRemoved()
 {
     GCombatGump.Update();
     if (this.m_Paperdoll != null)
     {
         Gumps.OpenPaperdoll(this, this.m_PaperdollName, this.m_PaperdollCanDrag);
     }
 }
コード例 #2
0
ファイル: Mobile.cs プロジェクト: uotools/PlayUO
 public void EquipChanged()
 {
     GCombatGump.Update();
     this.m_Equip.Sort(LayerComparer.FromDirection(this.m_Direction));
     if (this.m_Paperdoll != null)
     {
         Gumps.OpenPaperdoll(this, this.m_PaperdollName, this.m_PaperdollCanDrag);
     }
 }
コード例 #3
0
ファイル: AbilityInfo.cs プロジェクト: uotools/PlayUO
 public static void ClearActive()
 {
     m_Active = null;
     GCombatGump.Update();
 }