GC-Proto/proto/MotionInfo.proto

17 lines
366 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
import "MotionState.proto";
2023-08-17 14:18:58 +03:00
// Obf: LJEPKMPIOKJ
2022-11-06 15:30:21 +03:00
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;
uint64 interval_velocity = 9;
2022-11-06 15:30:21 +03:00
}