Sfoglia il codice sorgente

修改法术的位置更新由战斗服来更新

大爷 1 anno fa
parent
commit
e25baef494

+ 1 - 1
Common/CommonAI/Zone/Instance/InstanceItem.cs

@@ -73,7 +73,7 @@ namespace CommonAI.Zone.Instance
 
             this.Force = force;
             this.mClientVisible = item.ClientVisible;
-            this.mSyncPos = zone.SyncPos;
+            this.mSyncPos = false;// zone.SyncPos;
             this.mItemCreater = creater;
             this.mFrom = from;
 

+ 2 - 2
Common/CommonAI/Zone/Instance/InstanceSpell.cs

@@ -134,7 +134,7 @@ namespace CommonAI.Zone.Instance
                 this.mHittedUnits = (damageList == null ? new Dictionary<uint, InstanceUnit>() : damageList);
             }
             this.mClientVisible = mInfo.ClientVisible;
-            this.mSyncPos = zone.SyncPos;
+            this.mSyncPos = true;// zone.SyncPos;
             this.mHitIntervalTicker = new TimeInterval<SpellTemplate.KeyFrame>(data.HitIntervalMS);
             this.mHitIntervalTicker.Tag = data.HitIntervalKeyFrame;
             this.mHitTotalTimes = 0;
@@ -603,7 +603,7 @@ namespace CommonAI.Zone.Instance
                 case SpellTemplate.MotionType.MissileAttackRoute:
                     if (mTarget != null)
                     {
-                        if (mInfo.RotateSpeedSEC == 0)
+                        //if (mInfo.RotateSpeedSEC == 0)
                         {
                             faceTo(mTarget.X, mTarget.Y);
                         }

+ 3 - 2
Common/CommonAI/ZoneClient/ZoneObject.Spell.cs

@@ -273,10 +273,11 @@ namespace CommonAI.ZoneClient
             int intervalMS = Parent.CurrentIntervalMS;
             mPassTimeMS += intervalMS;
 
-            if (Parent.ActorSyncMode != SyncMode.ForceByServer && (Info.MaxMoveDistance == 0 || mMoveDistance < Info.MaxMoveDistance))
+            //法术位置更新交给战斗服
+            /*if (Parent.ActorSyncMode != SyncMode.ForceByServer && (Info.MaxMoveDistance == 0 || mMoveDistance < Info.MaxMoveDistance))
             {
                 updateMotion(intervalMS);
-            }
+            }*/
             updateZPos();
 
             switch (Info.MType)

+ 0 - 7
Common/CommonAIServer/Node/ZoneNode.cs

@@ -42,7 +42,6 @@ namespace CommonAIServer.Node
         public ZoneNode(EditorTemplates data_root, ZoneNodeConfig cfg)
             : base(data_root, cfg)
         {
-
         }
 
         public int PlayerCount
@@ -273,12 +272,6 @@ namespace CommonAIServer.Node
 
         #region _Virtual_And_Override_
 
-        public override bool ZoneUpdate(int intervalMS)
-        {
-            Zone.SyncPos = !mEnableAOI;
-            return base.ZoneUpdate(intervalMS);
-        }
-
         protected override void OnZoneUpdate(bool slowRefresh)
         {
             //客户端更新//