移动同步相关

This commit is contained in:
2025-09-09 22:49:09 +08:00
parent a2c5b61ba8
commit ddffaac7b3
8 changed files with 31 additions and 13 deletions

View File

@@ -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;
}