stash work

This commit is contained in:
Michal Pikulski
2025-11-26 17:11:02 +01:00
parent 010ebea7f3
commit 4d55345fb3
40 changed files with 4217 additions and 1163 deletions

View File

@@ -64,14 +64,14 @@ namespace Minigames.StatueDressup.Controllers
}
/// <summary>
/// Handle click to show enlarged view
/// Handle click to enlarge/shrink photo
/// </summary>
public void OnPointerClick(PointerEventData eventData)
{
if (_galleryController != null && !string.IsNullOrEmpty(_photoId))
{
Logging.Debug($"[PhotoGridItem] Clicked: {_photoId}");
_galleryController.ShowEnlargedView(_photoId);
_galleryController.OnGridItemClicked(this, _photoId);
}
}
}