Browse Source

单人战斗评分

zhaoyang 3 years ago
parent
commit
0f563d3a96

+ 2 - 2
GameClient/Assets/Game/HotUpdate/Views/MainStory/StoryFightSingleScoreView.cs

@@ -200,13 +200,13 @@ namespace GFGGame
             int partId = FightScoreCfgArray.Instance.dataArray[_index].id;
             double partScore = ScoreSystemData.Instance.GetPartItemScore(partId);
             double clickScore = +ScoreSystemData.Instance.GetPartItemClickScore(partId, clickState);
-            int count = (int)(ScoreSystemData.Instance.GetPartScore(partId, clickState, _mainScore, _skillScore));// (int)(partScore + clickScore);
+            int count = (int)(partScore + clickScore);
 
             comScoreResult.m_txtCount0.text = count.ToString();
             comScoreResult.m_txtCount1.text = count.ToString();
             comScoreResult.m_txtCount2.text = count.ToString();
             ET.Log.Debug("count:" + count);
-            _score += count;// ScoreSystemData.Instance.GetPartScore(partId, clickState, _mainScore, _skillScore);
+            _score += ScoreSystemData.Instance.GetPartScore(partId, clickState, _mainScore, _skillScore);
         }
 
         private void CircleResuleEnd()