Add OnPlayEnding to editor modules and windows

#3514
This commit is contained in:
Wojtek Figat
2025-06-16 14:56:35 +02:00
parent 117f890612
commit 90b6293bc2
4 changed files with 23 additions and 0 deletions

View File

@@ -1223,6 +1223,13 @@ namespace FlaxEditor.Modules
Windows[i].OnPlayBegin();
}
/// <inheritdoc />
public override void OnPlayEnding()
{
for (int i = 0; i < Windows.Count; i++)
Windows[i].OnPlayEnding();
}
/// <inheritdoc />
public override void OnPlayEnd()
{