From c55220d739bf865318002d61e69a8dcdc425caff Mon Sep 17 00:00:00 2001 From: Ding Yuntian <1491671119@qq.com> Date: Wed, 17 Jun 2026 12:49:46 +0800 Subject: [PATCH] =?UTF-8?q?feat(save):=20=E6=A7=BD=E4=BD=8D=E5=85=83?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A2=9E=E5=8A=A0=E8=8A=82=E7=82=B9=E5=90=8D?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/SaveSystem/SlotManager.cs | 1 + Assets/Scripts/SaveSystem/SlotTypes.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Assets/Scripts/SaveSystem/SlotManager.cs b/Assets/Scripts/SaveSystem/SlotManager.cs index bd049c943..f49267230 100644 --- a/Assets/Scripts/SaveSystem/SlotManager.cs +++ b/Assets/Scripts/SaveSystem/SlotManager.cs @@ -242,6 +242,7 @@ namespace AibisDream.SaveSystem sceneName = summary.SceneName, sceneSoName = summary.SceneSoName, yarnProjectId = summary.YarnProjectId, + nodeName = snapshot.anchor?.nodeName, schemaVersion = snapshot.schemaVersion, gameVersion = snapshot.gameVersion, thumbnailFile = $"{ConstRef.SaveThumbnailFileName}.png" diff --git a/Assets/Scripts/SaveSystem/SlotTypes.cs b/Assets/Scripts/SaveSystem/SlotTypes.cs index b7c3ae0bf..1ee3e6521 100644 --- a/Assets/Scripts/SaveSystem/SlotTypes.cs +++ b/Assets/Scripts/SaveSystem/SlotTypes.cs @@ -26,6 +26,7 @@ namespace AibisDream.SaveSystem public string sceneName; public string sceneSoName; public string yarnProjectId; + public string nodeName; public int schemaVersion; public string gameVersion; public string thumbnailFile;