gitee.com/zhongguo168a/gocodes@v0.0.0-20230609140523-e1828349603f/datax/schemax/configs/configutil/time.go (about) 1 package configutil 2 3 // 毫秒 -> 游戏秒数 4 // 目前是毫秒 5 func ConvertConfigTime(second float64) int { 6 return int(second*1000000 + 0.5) 7 } 8 9 // 米/秒 -> 米/微妙 10 func ConvertConfigSpeed(speed float64) float64 { 11 return speed / 1000000 12 }