Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对lua很陌生,我正在尝试为视频游戏制作一个功能,一旦玩家加入游戏,它就会启动一个计时器,当他离开时,计时器就会停止。
而且我想找到总时间,我知道lua中的计时器,但我不确定我将如何找到总时间。
如果愿意,我会提供一些示例代码,但老实说,我在这个问题上没有方向。
用于os.time()获取自纪元以来的秒数 - 一次在开始时,一次在您尝试测量的任何结束时。减去,你就得到了经过的秒数(墙上时间)。
os.time()