开头拼起

This commit is contained in:
2025-05-14 14:51:54 +08:00
parent d957bde000
commit a8babd0faf
29 changed files with 444 additions and 27 deletions
@@ -140,7 +140,7 @@ namespace AibisDream.FixSystem
.Delay(0.5f)
.DOTween(() => transform.DOMoveY(ConstRef.TweenEndY,
(transform.position.y - ConstRef.TweenEndY) / ConstRef.FallSpeed).SetEase(Ease.InQuad))
.Callback(() => DialogController.Instance?.StartDialogNode($"{data.moduleName}_cutdown"))
.Callback(() => DialogController.Instance?.StartDialogNode($"{data.moduleName}CutDown"))
.Callback(() => EnumEventSystem.Global.Send(EventEnum.CutEnd))
.Start(this, () => Destroy(gameObject));
}
@@ -35,7 +35,7 @@ namespace AibisDream
_lineRenderer = GetComponent<LineRenderer>();
_lineMaterial = _lineRenderer.materials[0];
}
_lineRenderer.gameObject.SetActive(true);
// 清除旧数据
@@ -296,7 +296,7 @@ namespace AibisDream
gameObject.SetActive(false);
}
// 获取当前所有记录的范围(0-1之间的值)
// 获取当前所有记录的范围(0-1之间的值)
public List<Vector2> GetRecordedRanges()
{
return new List<Vector2>(_recordedRanges);