GC-Proto/proto/PlatformInfo.proto

28 lines
654 B
Protocol Buffer
Raw Normal View History

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
import "MathQuaternion.proto";
2022-11-06 15:30:21 +03:00
import "MovingPlatformType.proto";
import "Route.proto";
2023-02-28 06:08:38 +03:00
import "Vector.proto";
2023-04-11 11:18:47 +03:00
// Name: EFNFEPKAAOA
2022-11-06 15:30:21 +03:00
message PlatformInfo {
2023-03-07 05:02:26 +03:00
uint32 route_id = 1;
int32 start_index = 2;
2023-04-11 11:18:47 +03:00
uint32 start_route_time = 3;
uint32 start_scene_time = 4;
Vector start_pos = 7;
2023-03-07 05:02:26 +03:00
bool is_started = 8;
2023-04-11 11:18:47 +03:00
MathQuaternion start_rot = 9;
uint32 stop_scene_time = 10;
Vector pos_offset = 11;
MathQuaternion rot_offset = 12;
2023-03-07 05:02:26 +03:00
MovingPlatformType moving_platform_type = 13;
bool is_active = 14;
Route route = 15;
uint32 point_id = 16;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00