You are viewing a potentially older version of this package. View all versions.
nickklmao-MenuLib-2.0.0 icon

MenuLib

A library for creating UI!

Date uploaded 2 weeks ago
Version 2.0.0
Download link nickklmao-MenuLib-2.0.0.zip
Downloads 264724
Dependency string nickklmao-MenuLib-2.0.0

This mod requires the following mods to function

BepInEx-BepInExPack-5.4.2100 icon
BepInEx-BepInExPack

BepInEx pack for Mono Unity games. Preconfigured and ready to use.

Preferred version: 5.4.2100

README

Menu Lib

A library for creating UI!

As REPOConfig gets updated, so will this library.

For Developers - VERSION 2.0.0

You can reference the REPOConfig GitHub.
Official documentation will come later (sorry), but here's a super quick code snippet:

MenuAPI.AddElementToMainMenu(parent =>
{
	//`parent` in this scenario represents the MainMenu
	
	//Buttons
	var repoButton = MenuAPI.CreateREPOButton("A Button", () => Debug.Log("I was clicked!"), parent, Vector2.zero);
	
	//Labels
	var repoLabel = MenuAPI.CreateREPOLabel("A Label", parent, new Vector2(48.3f, 55.5f));
	
	//Toggles
	var repoToggle = MenuAPI.CreateREPOToggle("A Toggle", b => Debug.Log($"I was switched to: {b}"), parent, Vector2.zero, "Left Button Text", "Right Button Text", defaultValue: true);
	
	//Sliders
	//The precision argument/field is the number of decimals you want (0 for int)
	//The bar behavior argument/field is for the background bar visual, it doesn't affect functionality
	//The rest should be self-explanatory
	
	//Float Slider
	var repoFloatSlider = MenuAPI.CreateREPOSlider("Float Slider", "Description", f => Debug.Log($"New Float Value: {f}"), parent, Vector2.zero, -100f, 100f, 2, 50f, "prefix-", "-postfix", REPOSlider.BarBehavior.UpdateWithValue);

	//Int Slider (No precision argument)
	var repoIntSliderSlider = MenuAPI.CreateREPOSlider("Int Slider", "Description", i => Debug.Log($"New Int Value: {i}"), parent, Vector2.zero, -100, 100, 50, "prefix-", "-postfix", REPOSlider.BarBehavior.UpdateWithValue);
	
	//String Option Slider - Alternatively, you can use an int delegate -----------------> (int i) => Debug.Log($"New String Index Value: {i}")
	var repoStringSlider = MenuAPI.CreateREPOSlider("String Option Slider", "Description", (string s) => Debug.Log($"New String Value: {s}"), parent, ["Option A", "Option B", "Option C"], "a", Vector2.zero, "prefix-", "-postfix", REPOSlider.BarBehavior.UpdateWithValue);
	
	//Popup Page - These should be created and opened immediately (usually on a button press), trying to cache them will cause issues
	var repoPage = MenuAPI.CreateREPOPopupPage("Page Header", REPOPopupPage.PresetSide.Left, pageDimmerVisibility: true, spacing: 1.5f);
	
	//Popup Page Custom Position
	var repoPage = MenuAPI.CreateREPOPopupPage("Page Header", true, 1.5f, Vector2.zero);
	
	//Opens page exclusively, the previous page will be inactive
	repoPage.OpenPage(false);
	
	//Opens page inclusively, the previous page will still be active
	repoPage.OpenPage(true);
	
	//Closes page exclusively, only this page will close
	repoPage.ClosePage(false);
	
	//Closes this page + all pages added on top
	repoPage.ClosePage(true);
	
	//Sets the padding for the scroll box mask
	repoPage.maskPadding = new Padding(left: 0, top: 0, right: 0, bottom: 0);
	
	//Adds an element to the page
	repoPage.AddElement(parent =>
	{
		//Create element, parent it using `parent`
	});
	
	//Adds an element to the page's scroll box
	repoPage.AddElementToScrollView(scrollView =>
	{
		//Create element, parent it using `scrollView`
		//Setting the Y position of an element in here is useless, it will be overwritten
		//Additionally, this delegate requires a RectTransform to be returned:
		
		//return newlyCreatedElement.rectTransform;
	});
	
	//Each element has access to its scroll view element, it will be null if it wasn't parented to a scroll box
	var repoButton = MenuAPI.CreateREPOButton("A Button", () => Debug.Log("I was clicked!"), scrollView, Vector2.zero);

	var scrollViewElement = repoButton.repoScrollViewElement;
	
	//Sets space above this element when positioned
	scrollViewElement.topPadding = 50;
	
	//Sets space below this element when positioned, typically for the next element
	scrollViewElement.bottomPadding = 50;

	//To dynamically hide/show elements, you need to toggle this field
	scrollViewElement.visibility = false;
});

CHANGELOG

v2.2.0

  • Added MenuAPI.AddElementToSettingsMenu
  • Added MenuAPI.AddElementToColorMenu
  • Fixed README having inaccurate comments

v2.1.3

  • Added REPOScrollView.scrollSpeed (Can be null)
    • If null, the scrolling acts as normal, interpolated between local positions
    • If non-null value, the scrolling will be at a constant rate
  • Added REPOScrollView.SetScrollPosition(float normalizedPosition)
    • This will set the scroll view & scroll bar to a specific position
    • This value is normalized, 0 represents the top of the page while 1 represents the bottom
  • Fixed REPOAvatarPreview.OnDestroy from throwing a null reference exception (again)

v2.1.2

  • Fixed REPOAvatarPreview.OnDestroy from throwing a null reference exception
  • Fixed REPOScrollView from not updating when setting the spacing property post-creation
  • Added REPOPopupPage.pageDimmerOpacity (Range: 0f - 1f)
  • Scroll views now update when you're not hovering over them
    • This resolved some weird issues with dynamically adding items
  • REPOScrollViewElement.OnRectTransformDimensionsChange will now update the parent REPOScrollView layout
    • This should fix issues with custom TMP rich text sizes

v2.1.1

  • Fixed REPOPopupPage parameters (they were backwards)
  • Fixed an issue causing custom REPOPopupPage sizes to break cached pages
  • Updated REPOTextScroller to fetch a TMP component if its missing one
    • It only checks the object it was added to
  • Added overrideButtonSize to REPOButton
    • This will force a custom size rather than using the label size

v2.1.0

  • Scrollbar positions get updated when setting a page's mask padding
  • Added cached pages
    • This prevents you from having to regenerate your menu constantly
      • You can only set this via the MenuAPI.CreateREPOPage method
  • Added 'Action onClick' to REPOButton
  • Added 'REPOAvatarPreview'
  • Pressing escape goes back one page now

v2.0.0 - THE REWRITE

  • You can now add buttons to the menu lobby
  • Upgraded scroll boxes
    • Elements out of view will be disabled automatically to reduce lag
    • Fixed scroll boxes from not scrolling down all the way
    • Removed rebinding UI for keybinds (This could return later)
      • You can still change the keybind, it'll just be an option slider instead
  • Switched to all custom monobehaviours
    • Introduces REPOLabel, REPOButton, & REPOSpacer
    • This gives you almost full control over your elements
  • Plus a lot more

v1.0.5

  • Added new method SetBarState to REPOSlider
    • Changes the behavior of the background bar (UpdateWithValue, StaticMinimum, StaticMaximum)
    • This would typically be used for Enum types

v1.0.4

  • Changed slider increment buttons to only increment by 1
    • This depends on how precise your slider is

v1.0.3

  • Added keybind support (UnityEngine.InputSystem.Key)
  • Made slider descriptions scroll
  • Migrated OpenDialog from the REPOButton to the MenuAPI

v1.0.2

  • Fixed label size for toggles

v1.0.1

  • Added option support to sliders
    • Rather than displaying a number, words can be displayed

v1.0.0 🔥

  • Initial release