stash work
This commit is contained in:
committed by
Michal Pikulski
parent
8d410b42d3
commit
5bab6d9596
@@ -0,0 +1,28 @@
|
||||
using UI.Core;
|
||||
|
||||
namespace Minigames.StatueDressup.UI
|
||||
{
|
||||
/// <summary>
|
||||
/// UIPage wrapper for the photo gallery.
|
||||
/// Simple stock page with no transition animations.
|
||||
/// </summary>
|
||||
public class PhotoGalleryPage : UIPage
|
||||
{
|
||||
protected override void DoTransitionIn(System.Action onComplete)
|
||||
{
|
||||
// Instant transition - just show
|
||||
gameObject.SetActive(true);
|
||||
onComplete?.Invoke();
|
||||
}
|
||||
|
||||
protected override void DoTransitionOut(System.Action onComplete)
|
||||
{
|
||||
// Instant transition - just hide
|
||||
gameObject.SetActive(false);
|
||||
onComplete?.Invoke();
|
||||
}
|
||||
|
||||
// OnBackPressed uses default behavior (pops the page)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user