NahidaImpact/NahidaImpact.Protocol/PlatformInfo.proto

25 lines
553 B
Protocol Buffer
Raw Permalink Normal View History

2024-01-04 13:48:39 +00:00
syntax = "proto3";
import "Route.proto";
import "MathQuaternion.proto";
import "Vector.proto";
import "MovingPlatformType.proto";
message PlatformInfo {
Route route = 15;
MathQuaternion rot_offset = 12;
MathQuaternion start_rot = 9;
Vector pos_offset = 11;
Vector start_pos = 7;
int32 start_index = 2;
uint32 start_route_time = 3;
bool is_started = 8;
bool is_active = 14;
uint32 route_id = 1;
uint32 point_id = 16;
uint32 start_scene_time = 4;
MovingPlatformType moving_platform_type = 13;
uint32 stop_scene_time = 10;
}