[6.4.6][引导线动效] 修正引导线动效在调试面板的开关不生效问题

This commit is contained in:
renwj
2024-06-27 10:24:04 +08:00
parent 5ac4fa0f6b
commit 78a5d31101
9 changed files with 49 additions and 3 deletions

View File

@@ -316,4 +316,9 @@ interface IDevaToolsProvider : IProvider {
fun registerStartAutopilotStateListener(tag: String, block: (isCanStartAutopilot: Boolean) -> Unit)
fun unRegisterStartAutopilotStateListener(tag: String)
/**
* 是否开启引导线动效
*/
fun setRouteDynamicColorEnable(enable: Boolean)
}

View File

@@ -0,0 +1,8 @@
package com.mogo.eagle.core.function.api.map.route
import com.alibaba.android.arouter.facade.template.IProvider
interface IMapRouteProvider: IProvider {
fun setRouteDynamicColorEnable(enable: Boolean)
}