Update 3.3 (wow, a lot changed)

This commit is contained in:
Akbar Yahya
2022-12-05 19:41:24 +08:00
parent 238dd43a77
commit cf717aa6a0
2949 changed files with 32506 additions and 43050 deletions

View File

@@ -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;
}