move proto to submodule
This commit is contained in:
13
proto/RoutePoint.proto
Normal file → Executable file
13
proto/RoutePoint.proto
Normal file → Executable 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user