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

@@ -23,16 +23,14 @@ import "Vector.proto";
option java_package = "emu.grasscutter.net.proto";
message ToTheMoonObstacleInfo {
ShapeType type = 2;
int32 handle_id = 11;
MathQuaternion rotation = 7;
Vector center = 13;
Vector half_extents = 14;
enum ShapeType {
SHAPE_TYPE_OBSTACLE_SHAPE_CAPSULE = 0;
SHAPE_TYPE_OBSTACLE_SHAPE_BOX = 1;
}
int32 handle_id = 1;
ShapeType type = 8;
Vector half_extents = 7;
Vector center = 11;
MathQuaternion rotation = 12;
}