1
This commit is contained in:
parent
2b8e88adfc
commit
1763f491e3
@ -65,4 +65,5 @@ enum SMMessageId_e
|
|||||||
_SMNewsTicker = 1024;
|
_SMNewsTicker = 1024;
|
||||||
_SMSyncPosition = 1025;
|
_SMSyncPosition = 1025;
|
||||||
_SMSyncTeamData = 1026;
|
_SMSyncTeamData = 1026;
|
||||||
|
_SMSyncKillList = 1027;
|
||||||
}
|
}
|
||||||
|
@ -1324,6 +1324,13 @@ message MFObjPosition
|
|||||||
{
|
{
|
||||||
optional int32 obj_uniid = 1; //对象唯一id
|
optional int32 obj_uniid = 1; //对象唯一id
|
||||||
optional MFVec3 pos = 2; //坐标
|
optional MFVec3 pos = 2; //坐标
|
||||||
|
optional MFVec3 dir = 3; //朝向
|
||||||
|
}
|
||||||
|
|
||||||
|
//对象击杀
|
||||||
|
message MFKill
|
||||||
|
{
|
||||||
|
optional int32 obj_uniid = 1; //对象唯一id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1662,6 +1669,7 @@ message SMNewsTicker
|
|||||||
msg_context.values[2]: boss x
|
msg_context.values[2]: boss x
|
||||||
msg_context.values[3]: boss y
|
msg_context.values[3]: boss y
|
||||||
msg_context.values[4]: boss z
|
msg_context.values[4]: boss z
|
||||||
|
msg_context.values[5]: 多久后出现(单位秒)
|
||||||
*/
|
*/
|
||||||
optional int32 msg_type = 1; //消息类型
|
optional int32 msg_type = 1; //消息类型
|
||||||
optional MFTupleString msg_content = 2; //消息内容
|
optional MFTupleString msg_content = 2; //消息内容
|
||||||
@ -1679,6 +1687,12 @@ message SMSyncTeamData
|
|||||||
repeated MFTeamDataNew team_list = 18; //队伍数据
|
repeated MFTeamDataNew team_list = 18; //队伍数据
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//同步击杀信息
|
||||||
|
message SMSyncKillList
|
||||||
|
{
|
||||||
|
repeated MFKill kill_list = 18; //击杀列表
|
||||||
|
}
|
||||||
|
|
||||||
//游戏结束
|
//游戏结束
|
||||||
message SMGameOver
|
message SMGameOver
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user