18 lines
382 B
Protocol Buffer
18 lines
382 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "MathQuaternion.proto";
|
|
import "Vector3Int.proto";
|
|
import "Vector.proto";
|
|
|
|
message ObstacleInfo {
|
|
enum ShapeType {
|
|
OBSTACLE_SHAPE_CAPSULE = 0;
|
|
OBSTACLE_SHAPE_BOX = 1;
|
|
}
|
|
MathQuaternion rotation = 7;
|
|
Vector3Int extents = 5;
|
|
Vector center = 14;
|
|
ShapeType shape = 3;
|
|
int32 obstacle_id = 8;
|
|
}
|