1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 02:15:56 +02:00
This commit is contained in:
syuilo
2026-04-19 09:52:02 +09:00
parent a85f05ca29
commit aaab1e7260
4 changed files with 32 additions and 6 deletions

View File

@@ -646,12 +646,12 @@ export class RecyvlingTextGrid {
const prev = this.currentText;
for (let i = 0; i <= prev.length; i++) {
this.write(prev.substring(0, prev.length - (i + 1)).padEnd(prev.length, ' '));
await sleep(30);
await sleep(20);
}
for (let i = 0; i <= text.length; i++) {
this.write(text.substring(0, i + 1).padEnd(text.length, ' '));
await sleep(30);
await sleep(20);
}
}
}