Commit 99a4e08c authored by maxiaoliang's avatar maxiaoliang

修改升级动画

parent c4baec0a
...@@ -2854,7 +2854,7 @@ MonoBehaviour: ...@@ -2854,7 +2854,7 @@ MonoBehaviour:
DoubleTimerTV: {fileID: 1465665560} DoubleTimerTV: {fileID: 1465665560}
AllSpeedTimerTV: {fileID: 1077363537} AllSpeedTimerTV: {fileID: 1077363537}
proTimerTv: {fileID: 70009395} proTimerTv: {fileID: 70009395}
withdrawBoxText: {fileID: 569884961} withdrawBoxText: {fileID: 0}
StickTimerObj: {fileID: 694002146} StickTimerObj: {fileID: 694002146}
StickObj: {fileID: 1183343286} StickObj: {fileID: 1183343286}
MyDriverTimerObj: {fileID: 1507646506} MyDriverTimerObj: {fileID: 1507646506}
...@@ -10371,10 +10371,10 @@ RectTransform: ...@@ -10371,10 +10371,10 @@ RectTransform:
m_Father: {fileID: 300181109} m_Father: {fileID: 300181109}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 93.36, y: -45.84}
m_SizeDelta: {x: 0, y: 0} m_SizeDelta: {x: 126.72, y: 31.68}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &409306806 --- !u!114 &409306806
MonoBehaviour: MonoBehaviour:
...@@ -42499,10 +42499,10 @@ RectTransform: ...@@ -42499,10 +42499,10 @@ RectTransform:
m_Father: {fileID: 300181109} m_Father: {fileID: 300181109}
m_RootOrder: 1 m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 30, y: -97.04}
m_SizeDelta: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 30.720001}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1853878469 --- !u!114 &1853878469
MonoBehaviour: MonoBehaviour:
...@@ -81,13 +81,18 @@ public class CarPresenter : CarContract.Presenter ...@@ -81,13 +81,18 @@ public class CarPresenter : CarContract.Presenter
{ {
parm.Clear(); parm.Clear();
parm.Add("carId", parkingSpaceId); parm.Add("carId", parkingSpaceId);
HttpTool.Instance._Post("app/v1/game/fkqcw/parking/upgrade", parm, new Action<UpgradeCarBean>((bean) => HttpTool.Instance._Post("app/v1/game/fkqcw/parking/upgrade", parm, new Action<UpdateCarBean>((bean) =>
{ {
//Guide.guide.onClickStep3(); //Guide.guide.onClickStep3();
// mView.CarInfo(bean); // mView.CarInfo(bean);
Guide.guide.onClickStep2();
EventCenter.Broadcast(MyEventType.UPDATE_CAR_LIST_DATA); if (bean.status == 1) {
if (bean.status == -1) { Guide.guide.onClickStep2();
EventCenter.Broadcast(MyEventType.UPDATE_CAR_LIST_DATA);
mView.showFlyLevel();
}
else
{
GameObject.Find("Dialog").GetComponent<DialogControl>().showGoldInsufficientDialog(); GameObject.Find("Dialog").GetComponent<DialogControl>().showGoldInsufficientDialog();
} }
}), new Action<string, string>((code, errMsg) => }), new Action<string, string>((code, errMsg) =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment