2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
import "ProtEntityType.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "MotionInfo.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "Avatar.proto";
|
|
|
|
import "Monster.proto";
|
|
|
|
import "Npc.proto";
|
|
|
|
import "Gadget.proto";
|
|
|
|
import "EntityClientData.proto";
|
|
|
|
import "EntityAuthorityInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "PropPair.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "FightPropPair.proto";
|
|
|
|
import "AnimatorParameterValueInfoPair.proto";
|
|
|
|
import "EntityEnvironmentInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "ServerBuff.proto";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
message SceneEntityInfo {
|
2023-01-28 17:00:48 +03:00
|
|
|
ProtEntityType entityType = 1;
|
|
|
|
uint32 entityId = 2;
|
|
|
|
string createTime = 3;
|
|
|
|
MotionInfo motionInfo = 4;
|
|
|
|
repeated PropPair propList = 5;
|
|
|
|
repeated FightPropPair fightPropList = 6;
|
|
|
|
uint32 lifeState = 7;
|
|
|
|
repeated AnimatorParameterValueInfoPair animatorParaList = 9;
|
|
|
|
oneof EJICMKHBLIJ {
|
|
|
|
Avatar avatar = 10;
|
|
|
|
Monster monster = 11;
|
|
|
|
Npc npc = 12;
|
|
|
|
Gadget gadget = 13;
|
|
|
|
}
|
|
|
|
uint32 lastMoveSceneTimeMs = 17;
|
|
|
|
uint32 lastMoveReliableSeq = 18;
|
|
|
|
EntityClientData entityClientData = 19;
|
|
|
|
repeated EntityEnvironmentInfo entityEnvironmentInfoList = 20;
|
|
|
|
EntityAuthorityInfo entityAuthorityInfo = 21;
|
|
|
|
repeated string tagList = 22;
|
|
|
|
repeated ServerBuff serverBuffList = 23;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|