mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-08-03 02:50:13 +03:00
Update 3.3 (wow, a lot changed)
This commit is contained in:
@@ -18,17 +18,21 @@
|
||||
syntax = "proto3";
|
||||
|
||||
import "MathQuaternion.proto";
|
||||
import "ObstacleInfo.proto";
|
||||
import "Vector.proto";
|
||||
import "Vector3Int.proto";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message GMObstacleInfo {
|
||||
int64 timestamp = 14;
|
||||
ObstacleInfo.ShapeType shape = 2;
|
||||
enum ShapeType {
|
||||
SHAPE_TYPE_OBSTACLE_SHAPE_CAPSULE = 0;
|
||||
SHAPE_TYPE_OBSTACLE_SHAPE_BOX = 1;
|
||||
}
|
||||
|
||||
ShapeType shape = 2;
|
||||
MathQuaternion rotation = 8;
|
||||
Vector center = 15;
|
||||
int64 timestamp = 1;
|
||||
int32 obstacle_id = 13;
|
||||
MathQuaternion rotation = 3;
|
||||
Vector center = 8;
|
||||
Vector3Int extents = 15;
|
||||
Vector3Int extents = 9;
|
||||
}
|
||||
|
Reference in New Issue
Block a user