25 lines
851 B
C#
25 lines
851 B
C#
|
|
namespace Minigames.StatueDressup
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Default constants for StatueDressup minigame.
|
|||
|
|
/// These serve as fallbacks when settings fail to load.
|
|||
|
|
/// Prefer using settings configuration over these constants.
|
|||
|
|
/// </summary>
|
|||
|
|
public static class StatueDressupConstants
|
|||
|
|
{
|
|||
|
|
// Pagination
|
|||
|
|
public const int DefaultMenuItemsPerPage = 20;
|
|||
|
|
public const int DefaultGalleryItemsPerPage = 20;
|
|||
|
|
|
|||
|
|
// Animations
|
|||
|
|
public const float DefaultAnimationDuration = 0.3f;
|
|||
|
|
|
|||
|
|
// Gallery/Photos - Performance Critical
|
|||
|
|
// Note: These affect memory usage and should ideally come from settings
|
|||
|
|
public const int DefaultThumbnailSize = 256;
|
|||
|
|
public const int DefaultMaxCachedThumbnails = 50;
|
|||
|
|
public const float DefaultEnlargedScale = 2.5f;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|