21 lines
347 B
Protocol Buffer
21 lines
347 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 refPos = 6;
|
|
uint32 refId = 7;
|
|
uint32 sceneTime = 8;
|
|
uint64 intervalVelocity = 9;
|
|
}
|