#12006/6/3 15:13:06
我用lingo控制一些对象的运动,每组运动之间想有一点停顿。我是这样做的:
on moveTo3
--我的运动
myPause(500)
--下一组运动
end
on myPause howTime
s_Time = _system.milliseconds
repeat while _system.milliseconds - s_Time < 500
--noThing
end repeat
end
我想问的是:lingo中有现成的类似我写的mypause()这样函数吗?
闭起眼睛看人生