赞 | 1 |
VIP | 0 |
好人卡 | 0 |
积分 | 0 |
经验 | 0 |
最后登录 | 2024-1-30 |
在线时间 | 2 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 38
- 在线时间
- 2 小时
- 注册时间
- 2020-5-7
- 帖子
- 3
|
2楼
楼主 |
发表于 2024-1-30 21:25:44
|
只看该作者
我倒是问GPT问出个方法
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
async function BattleProcess() {
movingobject.sprite.x -= 10;
await sleep(1000);
movingobject.sprite.x -= 10;
await sleep(1000);
movingobject.sprite.x -= 10;
await sleep(1000);
}
这样好像暂时解决我的问题了。
但这样编程是好的么?
算了不管了我觉得好像还可以 |
|