mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-30 09:39:26 +03:00
8d246c4fa7
* Fix Name Rotation to Vector
26 lines
570 B
Protocol Buffer
26 lines
570 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "Vector.proto";
|
|
import "RotationSpeed.proto";
|
|
import "MovingPlatformType.proto";
|
|
import "Route.proto";
|
|
message PlatformInfo {
|
|
uint32 routeId = 1;
|
|
int32 startIndex = 2;
|
|
uint32 startRouteTime = 3;
|
|
uint32 startSceneTime = 4;
|
|
Vector startPos = 7;
|
|
bool isStarted = 8;
|
|
RotationSpeed startRot = 9;
|
|
uint32 stopSceneTime = 10;
|
|
Vector posOffset = 11;
|
|
RotationSpeed rotOffset = 12;
|
|
MovingPlatformType movingPlatformType = 13;
|
|
bool isActive = 14;
|
|
Route route = 15;
|
|
uint32 pointId = 16;
|
|
}
|