123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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;
- }
- 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;
- //线速度
- float linear_velocity_x=10;
- float linear_velocity_y=11;
- float linear_velocity_z=12;
- //角速度
- float angle_velocity_x=13;
- float angle_velocity_y=14;
- float angle_velocity_z=15;
- //额外设置
- string extraSet=16;
- }
|