From 5b52c99de80f30e0552b282f9b8f2c578bea56f4 Mon Sep 17 00:00:00 2001 From: tiger_zhou Date: Mon, 11 Mar 2024 09:26:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E8=B5=9B=E7=AE=A1=E7=90=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/race/race_scene.proto | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/proto/race/race_scene.proto b/proto/race/race_scene.proto index 554d590..f0edf13 100644 --- a/proto/race/race_scene.proto +++ b/proto/race/race_scene.proto @@ -27,6 +27,14 @@ message RaceSceneListVO{ common.ModifyInfoVO modify_info = 6; } +//自定义保存 +message SceneCustomCreateVO{ + string name = 1; + RaceScene.Type type = 3; + Scene scene = 4; +} + +//场景发布vo message RaceScenePublishVO{ int64 dafitid = 1;//实训草稿id // int64 mapId = 2; @@ -39,6 +47,8 @@ message RaceScenePublishVO{ message Scene { string url = 1; StorageSimulation storage_simulation = 2; + string file_name = 3; + } //此消息与之前的实训数据相同,待填充 @@ -54,7 +64,8 @@ message StorageSimulation { message RaceScene { enum Type { Unknown = 0; - Local = 1; - Link = 2; + Local = 1; // 场景 + Link = 2; //连接 + Video = 3; //视频演示 } } \ No newline at end of file