Server.Mobiles.PlayerMobile.Delta C# (CSharp) 메소드

Delta() 공개 메소드

public Delta ( MobileDelta flag ) : void
flag MobileDelta
리턴 void
        public override void Delta(MobileDelta flag)
        {
            base.Delta(flag);

            if ((flag & MobileDelta.Stat) != 0)
                ValidateEquipment();

            if ((flag & (MobileDelta.Name | MobileDelta.Hue)) != 0)
                InvalidateMyRunUO();
        }

Usage Example

예제 #1
0
 public static void RemoveDisguise( PlayerMobile m )
 {
     m.Disguise = new DisguiseContext();
     m.Delta( MobileDelta.Hue );
     m.Delta( MobileDelta.Hair );
     m.Delta( MobileDelta.FacialHair );
     m.InvalidateProperties();
     m.Disguised = false;
 }
All Usage Examples Of Server.Mobiles.PlayerMobile::Delta