|
@@ -13,7 +13,7 @@ namespace ET
|
|
|
public override void OnEvent(BattleFunc a)
|
|
|
{
|
|
|
Log.Debug($"Battle Func:{a.FuncIndex}");
|
|
|
- asyncHandler(a.FuncIndex).Coroutine();
|
|
|
+ asyncHandler(a.FuncIndex);
|
|
|
}
|
|
|
|
|
|
//获得当前战场focus中心(当前塔位置)
|
|
@@ -33,7 +33,7 @@ namespace ET
|
|
|
return new Vector2(0, 0);
|
|
|
}
|
|
|
|
|
|
- private async ETTask asyncHandler(BattleFunc.Index index)
|
|
|
+ private void asyncHandler(BattleFunc.Index index)
|
|
|
{
|
|
|
var session = PlayerComponent.Instance.ClientScene().GetComponent<SessionComponent>().Session;
|
|
|
switch (index)
|
|
@@ -50,18 +50,13 @@ namespace ET
|
|
|
float x = centerpos.X + (float)(r * Math.Cos(ang));
|
|
|
float y = centerpos.Y - (float)(r * Math.Sin(ang));
|
|
|
|
|
|
- var ret = await session.Call(new C2G_AddUnitsToMap()
|
|
|
+ session.Call(new C2G_AddUnitsToMap()
|
|
|
{
|
|
|
UnitId = id,
|
|
|
Force = 1,
|
|
|
X = (int)x,
|
|
|
Y = (int)y
|
|
|
- });
|
|
|
-
|
|
|
- if (ret.Error != 0)
|
|
|
- {
|
|
|
- Log.Error(ret.Message);
|
|
|
- }
|
|
|
+ }).Coroutine();
|
|
|
}
|
|
|
break;
|
|
|
default:
|