From 424c5b373da262d2aaf7c6eac9562c2e211aec31 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 b06c0899..af397e40 100644 --- a/Assets/Scripts/zandria/ZandriaCreationsManager.cs +++ b/Assets/Scripts/zandria/ZandriaCreationsManager.cs @@ -316,8 +316,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;