From 694854552cae9134af92d16795eae04469c71aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=92=80=E5=A2=83=E7=9F=B3?= Date: Sun, 3 Nov 2024 18:06:05 +0800 Subject: [PATCH] fix PlayBGM node display text: frame(s) -> second(s) --- LuaSTGNode.Legacy/EditorData/Node/Audio/PlayBGM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LuaSTGNode.Legacy/EditorData/Node/Audio/PlayBGM.cs b/LuaSTGNode.Legacy/EditorData/Node/Audio/PlayBGM.cs index 1762367..bc998b9 100644 --- a/LuaSTGNode.Legacy/EditorData/Node/Audio/PlayBGM.cs +++ b/LuaSTGNode.Legacy/EditorData/Node/Audio/PlayBGM.cs @@ -95,7 +95,7 @@ public override string ToString() string s = ""; if (!string.IsNullOrEmpty(NonMacrolize(1))) { - s = ", start from " + NonMacrolize(1) + " frame(s)"; + s = ", start from " + NonMacrolize(1) + " second(s)"; } return "Play background music " + NonMacrolize(0) + s; }