버그 수정

This commit is contained in:
2026-05-11 17:27:04 +09:00
parent 73aebe2d8c
commit fcdae4947e
99 changed files with 5478 additions and 15 deletions

View File

@@ -0,0 +1,32 @@
using System;
namespace FullscreenEditor {
/// <summary>
/// Utility callbacks for fullscreen state changes.
/// </summary>
public static class FullscreenCallbacks {
/// <summary>
/// Callback called before the views are restored to their original position.
/// </summary>
public static Action<FullscreenContainer> beforeFullscreenClose = (f) => { };
/// <summary>
/// Callback called before the container for the fullscreen view is created and
/// the views are moved between ContainerWindows.
/// </summary>
public static Action<FullscreenContainer> beforeFullscreenOpen = (f) => { };
/// <summary>
/// Callback called in the OnDestroy method of the FullscreenContainer, after the
/// views have been reverted to their orignal positions.
/// </summary>
public static Action<FullscreenContainer> afterFullscreenClose = (f) => { };
/// <summary>
/// Callback called after the fullscreen is opened and everything is already set up.
/// </summary>
public static Action<FullscreenContainer> afterFullscreenOpen = (f) => { };
}
}