新增逻辑

This commit is contained in:
2025-12-15 12:30:45 +08:00
parent a4c2bb021b
commit 240bee00c3
56 changed files with 649 additions and 526 deletions

View File

@@ -22,11 +22,13 @@ message QuaternionInfo
///玩家当前使用钓组信息
message GearInfo
{
int64 Rod = 1;
repeated int64 Rigs = 2; //钓组配件
Vector3Info Position = 3; //钓组当前位置
Vector3Info Rotation = 4; //钓组方向
repeated KeyValueInt64 Propertys = 5; //钓组参数信息
ItemInfo Item = 1; //主物品id
repeated ItemInfo Binds = 2; //物品配件
Vector3Info Position = 3; //物品当前位置
Vector3Info Rotation = 4; //物品方向
repeated KeyValueInt64 Propertys = 5; //物品参数信息
bool InUse = 6; //使用中
bool InHand = 7; //在手中
}
@@ -43,7 +45,7 @@ message MapUnitInfo
Vector3Info Position = 3; //当前位置
Vector3Info Rotation = 4; //角色方向
UnitStateInfo State = 5; //状态信息
repeated GearInfo Gears = 6; //钓组数据
repeated GearInfo Gears = 6; //钓组数据
repeated KeyValueInt64 Propertys = 7; //属性信息
}