move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

13
proto/RoutePoint.proto Normal file → Executable file
View File

@@ -2,18 +2,19 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MathQuaternion.proto";
import "Vector.proto";
import "MathQuaternion.proto";
message RoutePoint {
Vector position = 1;
oneof moveParams {
oneof MoveParams {
float velocity = 11;
float time = 12;
}
oneof rotateParams {
oneof RotateParams {
Vector rotation = 21;
MathQuaternion rotationSpeed = 22;
MathQuaternion axisSpeed = 23;
MathQuaternion rotation_speed = 22;
MathQuaternion axis_speed = 23;
}
Vector position = 1;
float arrive_range = 2;
}