This commit is contained in:
laodaming
2023-09-13 13:59:01 +08:00
parent d34d72a5cc
commit 190ac0407e
3 changed files with 26 additions and 15 deletions

View File

@@ -62,3 +62,11 @@ type AssembleRenderDataRspMsg struct {
type ToUnityRspMsg struct {
RenderId string `json:"render_id"` //渲染id
}
// 发送到unity结构中id的结构
type ToUnityIdStruct struct {
TaskId string `json:"task_id"`
Wid string `json:"wid"`
RenderId string `json:"render_id"`
RenderBeginTime int64 `json:"render_begin_time"`
}