2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
|
2023-01-29 02:46:20 +03:00
|
|
|
import "Vector.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "RotationSpeed.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "MovingPlatformType.proto";
|
|
|
|
import "Route.proto";
|
|
|
|
message PlatformInfo {
|
2023-01-28 17:00:48 +03:00
|
|
|
uint32 routeId = 1;
|
|
|
|
int32 startIndex = 2;
|
|
|
|
uint32 startRouteTime = 3;
|
|
|
|
uint32 startSceneTime = 4;
|
2023-01-29 02:46:20 +03:00
|
|
|
Vector startPos = 7;
|
2023-01-28 17:00:48 +03:00
|
|
|
bool isStarted = 8;
|
|
|
|
RotationSpeed startRot = 9;
|
|
|
|
uint32 stopSceneTime = 10;
|
2023-01-29 02:46:20 +03:00
|
|
|
Vector posOffset = 11;
|
2023-01-28 17:00:48 +03:00
|
|
|
RotationSpeed rotOffset = 12;
|
|
|
|
MovingPlatformType movingPlatformType = 13;
|
|
|
|
bool isActive = 14;
|
|
|
|
Route route = 15;
|
|
|
|
uint32 pointId = 16;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|