mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-08-02 10:30:12 +03:00
Fix Scene*Info
This commit is contained in:
@@ -5,16 +5,18 @@ option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "ProtEntityType.proto";
|
||||
import "MotionInfo.proto";
|
||||
import "Avatar.proto";
|
||||
import "Monster.proto";
|
||||
import "Npc.proto";
|
||||
import "Gadget.proto";
|
||||
import "EntityClientData.proto";
|
||||
import "EntityAuthorityInfo.proto";
|
||||
import "PropPair.proto";
|
||||
import "FightPropPair.proto";
|
||||
import "AnimatorParameterValueInfoPair.proto";
|
||||
import "EntityEnvironmentInfo.proto";
|
||||
|
||||
import "SceneAvatarInfo.proto";
|
||||
import "SceneGadgetInfo.proto";
|
||||
import "SceneMonsterInfo.proto";
|
||||
import "SceneNpcInfo.proto";
|
||||
|
||||
import "ServerBuff.proto";
|
||||
message SceneEntityInfo {
|
||||
ProtEntityType entityType = 1;
|
||||
@@ -26,10 +28,10 @@ message SceneEntityInfo {
|
||||
uint32 lifeState = 7;
|
||||
repeated AnimatorParameterValueInfoPair animatorParaList = 9;
|
||||
oneof entity {
|
||||
Avatar avatar = 10;
|
||||
Monster monster = 11;
|
||||
Npc npc = 12;
|
||||
Gadget gadget = 13;
|
||||
SceneAvatarInfo avatar = 10;
|
||||
SceneMonsterInfo monster = 11;
|
||||
SceneNpcInfo npc = 12;
|
||||
SceneGadgetInfo gadget = 13;
|
||||
}
|
||||
uint32 lastMoveSceneTimeMs = 17;
|
||||
uint32 lastMoveReliableSeq = 18;
|
||||
|
Reference in New Issue
Block a user