在Reworld编辑器中,等待时间的函数有三种写法:
一、协程等待
在非代码块中,我们可以使用wait()函数直接进行等待
在函数或循环中则需要使用协程coroutine进行等待
coroutine.start(function()
...
coroutine.wait(1)
...
end)
二、使用Timer计时器
local index = 0
local function hahalog()
log("sheep count"..index)
index = index + 1
end
local timer = RWTimer:Create(hahalog,1,100)
timer:Start()
三、Update函数
local gameRun = GetService("GameRun")
gameRun.Update:Connect(function(delta)
end)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。