c1_lua/lua/app/config/move.lua
2023-04-03 10:59:13 +08:00

39 lines
498 B
Lua

local move = {
[1]={
["horizontal"]=1,
["target"]=2,
["target_offset"]={
50,
0
},
["across"]=1,
["speed"]=9999,
["end_distance"]=0
},
[2]={
["horizontal"]=1,
["target"]=1,
["target_offset"]={
500,
0
},
["across"]=1,
["speed"]=1000,
["end_distance"]=0
},
[3]={
["horizontal"]=1,
["target"]=1,
["target_offset"]={
-500,
0
},
["speed"]=200,
["end_time"]=2000,
["collision_type"]=1
}
}
local config = {
data=move,count=3
}
return config