1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- syntax = "proto3";
- package protos;
- // 载入游戏响应
- message CharacterPackage{
- int32 hand=1;
- int32 handGrab=2;
-
- float position_x=3;
- float position_y=4;
- float position_z=5;
- //旋转
- float rotation_x=6;
- float rotation_y=7;
- float rotation_z=8;
- float rotation_w=9;
- //线速度
- float linear_velocity_x=10;
- float linear_velocity_y=11;
- float linear_velocity_z=12;
- repeated float bonePos=13;
- repeated float boneRot=14;
- int32 jump=15;
- int32 down=16;
- int32 ping=17;
- }
- message BoxPackage {
- int32 effect_id=1;
- int32 hold_id=2;
- //坐标
- float position_x=3;
- float position_y=4;
- float position_z=5;
- //旋转
- float rotation_x=6;
- float rotation_y=7;
- float rotation_z=8;
- float rotation_w=9;
- //额外设置
- string extraSet=10;
- }
- message EventPackage{
- int32 eventcode=1;
- bool isshow=2;
- string extraParams=3;
- }
- message MiniGamePackage{
- float position_x=1;
- float position_y=2;
- float position_z=3;
- float rotation_y=4;
- float speed=5;
- }
|