Tencent / TAD_Sim

腾讯自动驾驶仿真系统 TAD Sim (Tencent Autonomous Driving Simulation) 单机版是腾讯自动驾驶以建立更加安全和高效的自动驾驶测试工具为目标, 为自动驾驶系统研发和验证而量身定做的跨平台分布式系统.
Other
256 stars 70 forks source link

Front End stuck when playing #41

Open shaoxiaohang opened 3 weeks ago

shaoxiaohang commented 3 weeks ago

前端切换到播放模式,点击播放后就卡住了打转,但是后端可以正常仿真完毕, 下面的回调函数没有被执行,导致前端卡住

export function play (context) { const { state, commit } = context let frameNumber = 0 commit('updateState', { loading: true }) commit('updateState', { isPaused: false }) electron.player.play(async (status, err) => { console.log('play status', cloneDeep(status)) if (err?.length) { await showErrorList(err) }