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;