Cascading

This commit is contained in:
2025-12-15 03:55:18 +08:00
parent 2a3bcf7423
commit 3d22cb6abf
4 changed files with 5 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ namespace Views {
}
private async UniTask FallDelay() {
float randomDelay = Random.Range(0.05f, 0.5f);
float randomDelay = 1 * this.gem.Position.y / 100f;
await UniTask.WaitForSeconds(randomDelay);
this.isFalling = true;
}