mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 19:26:49 +00:00
19 lines
349 B
Protocol Buffer
19 lines
349 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "Vector.proto";
|
||
|
import "MotionState.proto";
|
||
|
|
||
|
message MotionInfo {
|
||
|
Vector pos = 1;
|
||
|
Vector rot = 2;
|
||
|
Vector speed = 3;
|
||
|
MotionState state = 4;
|
||
|
repeated Vector params = 5;
|
||
|
Vector ref_pos = 6;
|
||
|
uint32 ref_id = 7;
|
||
|
uint32 scene_time = 8;
|
||
|
uint32 interval_velocity = 9;
|
||
|
}
|