mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
f3ef8fbf64
* fix some proto names needed by dockergs * fix no found proto in op.js
24 lines
418 B
Protocol Buffer
24 lines
418 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "Vector.proto";
|
|
import "MathQuaternion.proto";
|
|
import "Vector3Int.proto";
|
|
|
|
message ObstacleInfo {
|
|
|
|
enum ShapeType {
|
|
SHAPE_TYPE_OBSTACLE_SHAPE_CAPSULE = 0;
|
|
SHAPE_TYPE_OBSTACLE_SHAPE_BOX = 1;
|
|
}
|
|
|
|
Vector center = 4;
|
|
Vector3Int extents = 12;
|
|
ShapeType shape = 5;
|
|
int32 obstacleId = 9;
|
|
MathQuaternion rotation = 2;
|
|
}
|