整理代码,修改更新历史
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
local find=string.find
|
||||
local next,type=next,type
|
||||
local TABLE={}
|
||||
|
||||
@@ -36,7 +37,7 @@ function TABLE.copy(org)
|
||||
return L
|
||||
end
|
||||
|
||||
--For all things in new if same type in base, push to old
|
||||
--For all things in new if same type in old, push to old
|
||||
function TABLE.update(new,old)
|
||||
for k,v in next,new do
|
||||
if type(v)==type(old[k])then
|
||||
@@ -49,7 +50,7 @@ function TABLE.update(new,old)
|
||||
end
|
||||
end
|
||||
|
||||
--For all things in new if no val in base, push to old
|
||||
--For all things in new if no val in old, push to old
|
||||
function TABLE.complete(new,old)
|
||||
for k,v in next,new do
|
||||
if type(v)=='table'then
|
||||
@@ -96,7 +97,6 @@ end
|
||||
|
||||
--Dump a simple lua table
|
||||
do--function TABLE.dump(L,t)
|
||||
local find=string.find
|
||||
local tabs={
|
||||
[0]="",
|
||||
"\t",
|
||||
@@ -151,7 +151,6 @@ end
|
||||
|
||||
--Dump a simple lua table (no whitespaces)
|
||||
do--function TABLE.dumpDeflate(L,t)
|
||||
local find=string.find
|
||||
local function dump(L)
|
||||
local s="return{"
|
||||
if type(L)~='table'then return end
|
||||
|
||||
@@ -41,6 +41,7 @@ return STRING.split([=[
|
||||
新增小亚(xiaoya)语音包
|
||||
旋转系统新增BiRS(Bias RS)(实验性),ASC,ASCplus(添加180度踢墙,实验性)
|
||||
新增noInitSZO模式参数,自动跳过开局SZO(目前仅用于马拉松/20G模式) #121
|
||||
自定义游戏的序列任务场地等数据退出保存
|
||||
改动:
|
||||
更换更简洁的加载动画,合并intro场景
|
||||
调整TRS中S5和Z5的踢墙表,增加Ospin时SZ按反的尝试
|
||||
|
||||
Reference in New Issue
Block a user