From 8ec15605205f57188a32d637cfabccf0ab33c1e3 Mon Sep 17 00:00:00 2001 From: Andy Baker Date: Sun, 1 Dec 2024 18:00:49 +0000 Subject: [PATCH] Tweak initial and max pages (currently limited by #61 ) [CI BUILD] --- Assets/Scripts/zandria/ZandriaCreationsManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/zandria/ZandriaCreationsManager.cs b/Assets/Scripts/zandria/ZandriaCreationsManager.cs index 47f2f413..8e33cd5b 100644 --- a/Assets/Scripts/zandria/ZandriaCreationsManager.cs +++ b/Assets/Scripts/zandria/ZandriaCreationsManager.cs @@ -319,8 +319,8 @@ public class ZandriaCreationsManager : MonoBehaviour // to the PolyMenu. public enum LoadStatus { NONE, LOADING_THUMBNAIL, LOADING_MODEL, FAILED, SUCCESSFUL } public const int NUMBER_OF_CREATIONS_PER_PAGE = 9; - public const int MAX_NUMBER_OF_PAGES = 10; - public const int NUMBER_OF_PAGES_AT_START = 2; + public const int MAX_NUMBER_OF_PAGES = 30; + public const int NUMBER_OF_PAGES_AT_START = 1; // The PPU for imported thumbnails from Zandria that will be displayed on the menu. Chosen by eyeballing it. // More positive numbers will give smaller thumbnails, and vice-versa. private const int THUMBNAIL_IMPORT_PIXELS_PER_UNIT = 300;