优化星盘和各种shadr

Signed-off-by: TRADER_FOER <lhf190@outlook.com>
This commit is contained in:
2026-07-21 19:33:51 +08:00
parent 8f230831e9
commit 9e5c383a49
16 changed files with 480 additions and 767 deletions

View File

@@ -15,16 +15,16 @@ namespace Ichni.RhythmGame.UI
public bool allPartsSet;
public RectTransform leftParts;
public RectTransform rightParts;
public TMP_Text progressText;
public RectTransform progressMark;
public ProgressBar progressBar;
public TMP_Text songNameText;
public Image illustrationImage;
public TMP_Text difficultyText;
public TMP_Text levelText;
public TMP_Text composerText;
public TMP_Text illustratorText;
public TMP_Text chartDesignerText;
@@ -62,8 +62,8 @@ namespace Ichni.RhythmGame.UI
rightParts.anchoredPosition = new Vector2(250, 0f);
allPartsSet = false;
leftParts.DOAnchorPosX(1030f, 0.5f).OnComplete(() => allPartsSet = true).Play();
rightParts.DOAnchorPosX(-250f, 0.5f).Play();
leftParts.DOAnchorPosX(1030f, 0.5f).SetEase(Ease.OutExpo).OnComplete(() => allPartsSet = true).Play();
rightParts.DOAnchorPosX(-250f, 0.5f).SetEase(Ease.OutExpo).Play();
}
}
}