feat(scene-mgmt): 重构梦境门海浪切换演出

This commit is contained in:
2026-07-19 20:40:20 +08:00
parent bfbfe494c4
commit bfc61a0097
14 changed files with 1097 additions and 628 deletions
@@ -347,22 +347,6 @@ namespace AibisDream
yield return SpriteShowcase.Instance.ShowObj(picName, duration);
}
[YarnCommand("dream_overflow_on")]
public static IEnumerator DreamOverflowOn(string preset = "entry", float duration = 0.35f)
{
var showcase = SpriteShowcase.Instance;
if (showcase == null) yield break;
yield return showcase.SetDreamOverflow(preset, 1f, duration);
}
[YarnCommand("dream_overflow_off")]
public static IEnumerator DreamOverflowOff(float duration = 0.8f)
{
var showcase = SpriteShowcase.Instance;
if (showcase == null) yield break;
yield return showcase.SetDreamOverflow(null, 0f, duration);
}
[YarnCommand("show_sprite_motion")]
public static IEnumerator ShowSpriteMotion(string picName, string motionProfile, float duration = 0.35f)
{