Skip to content

Commit

Permalink
Tweak initial and max pages (currently limited by #61 )
Browse files Browse the repository at this point in the history
[CI BUILD]
  • Loading branch information
andybak committed Dec 3, 2024
1 parent 0ae0ab7 commit 5fdb383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/zandria/ZandriaCreationsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5fdb383

Please sign in to comment.