GC-Proto/proto/ObstacleInfo.proto

21 lines
396 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MathQuaternion.proto";
import "Vector.proto";
import "Vector3Int.proto";
// 4.7.0
message ObstacleInfo {
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
MathQuaternion rotation = 12;
Vector3Int extents = 10;
Vector center = 6;
ShapeType shape = 7;
int32 obstacle_id = 11;
}