Revert "[6.6.0][视角切换] 优化视角切换逻辑"

This reverts commit 61084d1455.
This commit is contained in:
renwj
2024-09-12 14:54:24 +08:00
parent c15fbf6722
commit 4769367d4d
6 changed files with 7 additions and 42 deletions

View File

@@ -1,6 +1,6 @@
package com.mogo.eagle.core.function.api.map.angle
import com.mogo.eagle.core.function.api.map.angle.ScreenToOriginDis.NONE
import com.mogo.eagle.core.function.api.map.angle.ScreenToOriginDis.DEFAULT
import com.mogo.map.uicontroller.*
import java.util.concurrent.TimeUnit
@@ -58,6 +58,6 @@ abstract class Scene(private val delay: Long, private val unit: TimeUnit = TimeU
* 3. [ScreenToOriginDis.UP]: 偏上
* 4. [ScreenToOriginDis.DOWN]: 偏下
*/
open fun getScreenToOriginDis(): ScreenToOriginDis = NONE
open fun getScreenToOriginDis(): ScreenToOriginDis = DEFAULT
}