移动同步相关
This commit is contained in:
@@ -9,6 +9,13 @@ public class C2Map_LookHandler : Route<MapUnit, C2Map_Look>
|
||||
protected override async FTask Run(MapUnit entity, C2Map_Look message)
|
||||
{
|
||||
var roomManageComponent = entity.Scene.GetComponent<RoomManageComponent>();
|
||||
var roomId = entity.RoomId;
|
||||
var room = roomManageComponent.Get(roomId);
|
||||
if (room == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var notifyMessage = new Map2C_LookeNotify()
|
||||
{
|
||||
Id = entity.Id,
|
||||
@@ -19,14 +26,11 @@ public class C2Map_LookHandler : Route<MapUnit, C2Map_Look>
|
||||
entity.Rotation.x = message.Rotation.x;
|
||||
entity.Rotation.y = message.Rotation.y;
|
||||
entity.Rotation.z = message.Rotation.z;
|
||||
|
||||
var room = roomManageComponent.Get(entity.MapId);
|
||||
|
||||
|
||||
// foreach (var (_, unit) in mapUnitManageComponent.Units)
|
||||
// {
|
||||
// entity.Scene.NetworkMessagingComponent.SendInnerRoute(unit.GateRouteId, notifyMessage);
|
||||
// }
|
||||
foreach (var (_, unit) in room.Units)
|
||||
{
|
||||
entity.Scene.NetworkMessagingComponent.SendInnerRoute(unit.GateRouteId, notifyMessage);
|
||||
}
|
||||
|
||||
await FTask.CompletedTask;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user