| | |
| | | }
|
| | | catch (Exception ex)
|
| | | {
|
| | | DesignDebug.Log(ex.ToString());
|
| | | DebugEx.Log(ex.ToString());
|
| | | }
|
| | |
|
| | |
|
| | |
| | | {
|
| | | Equation.Instance.AddKeyValue("AtkSpeedC",0);
|
| | | }
|
| | | DesignDebug.Log("评分:" + Equation.Instance.Eval<double>(_equipGSFormula.Numerical1));
|
| | | DebugEx.Log("评分:" + Equation.Instance.Eval<double>(_equipGSFormula.Numerical1));
|
| | | return Equation.Instance.Eval<int>(_equipGSFormula.Numerical1);
|
| | | }
|
| | | return 0;
|
| | |
| | |
|
| | | public double GetTimeOffest(DateTime getTime)
|
| | | {
|
| | | DesignDebug.Log("现在时间:" + TimeUtility.ServerNow + "获得时间:" + getTime);
|
| | | DebugEx.Log("现在时间:" + TimeUtility.ServerNow + "获得时间:" + getTime);
|
| | | //TimeUtility.SyncServerTime();
|
| | | TimeSpan t = TimeUtility.ServerNow - getTime;
|
| | | DesignDebug.Log("时间差:" + t.TotalSeconds);
|
| | | DebugEx.Log("时间差:" + t.TotalSeconds);
|
| | | return t.TotalSeconds;
|
| | | }
|
| | |
|