Add standalone event property.

This commit is contained in:
2023-02-09 18:20:36 +08:00
parent 291a018c13
commit 77c91d015a
2 changed files with 6 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ namespace Cryville.Crtr.Event {
}
foreach (var ev in c.Events) {
if (ev.time == null) {
coevents.Add(ev);
if (!ev.Standalone) coevents.Add(ev);
ev.time = c.time;
if (ev is EventContainer)
ev.endtime = c.endtime;