lstmdg cfdbf69074 2023.7.28 2 lat temu
..
ChangeListElements cfdbf69074 2023.7.28 2 lat temu
Menus cfdbf69074 2023.7.28 2 lat temu
AdapterListView.cs cfdbf69074 2023.7.28 2 lat temu
AdapterListView.cs.meta cfdbf69074 2023.7.28 2 lat temu
AlertBox.cs cfdbf69074 2023.7.28 2 lat temu
AlertBox.cs.meta cfdbf69074 2023.7.28 2 lat temu
BetterTextField.cs cfdbf69074 2023.7.28 2 lat temu
BetterTextField.cs.meta cfdbf69074 2023.7.28 2 lat temu
ChangeEntryGroup.cs cfdbf69074 2023.7.28 2 lat temu
ChangeEntryGroup.cs.meta cfdbf69074 2023.7.28 2 lat temu
ChangeListElements.meta cfdbf69074 2023.7.28 2 lat temu
ChangesGroupHeader.cs cfdbf69074 2023.7.28 2 lat temu
ChangesGroupHeader.cs.meta cfdbf69074 2023.7.28 2 lat temu
ErrorPageView.cs cfdbf69074 2023.7.28 2 lat temu
ErrorPageView.cs.meta cfdbf69074 2023.7.28 2 lat temu
HistoryEntryComponent.cs cfdbf69074 2023.7.28 2 lat temu
HistoryEntryComponent.cs.meta cfdbf69074 2023.7.28 2 lat temu
IconButton.cs cfdbf69074 2023.7.28 2 lat temu
IconButton.cs.meta cfdbf69074 2023.7.28 2 lat temu
IconTextButton.cs cfdbf69074 2023.7.28 2 lat temu
IconTextButton.cs.meta cfdbf69074 2023.7.28 2 lat temu
ListNotice.cs cfdbf69074 2023.7.28 2 lat temu
ListNotice.cs.meta cfdbf69074 2023.7.28 2 lat temu
Menus.meta cfdbf69074 2023.7.28 2 lat temu
PageComponent.cs cfdbf69074 2023.7.28 2 lat temu
PageComponent.cs.meta cfdbf69074 2023.7.28 2 lat temu
Paginator.cs cfdbf69074 2023.7.28 2 lat temu
Paginator.cs.meta cfdbf69074 2023.7.28 2 lat temu
ProgressView.cs cfdbf69074 2023.7.28 2 lat temu
ProgressView.cs.meta cfdbf69074 2023.7.28 2 lat temu
README.md cfdbf69074 2023.7.28 2 lat temu
README.md.meta cfdbf69074 2023.7.28 2 lat temu
SearchBar.cs cfdbf69074 2023.7.28 2 lat temu
SearchBar.cs.meta cfdbf69074 2023.7.28 2 lat temu
TabPageComponent.cs cfdbf69074 2023.7.28 2 lat temu
TabPageComponent.cs.meta cfdbf69074 2023.7.28 2 lat temu
TabView.cs cfdbf69074 2023.7.28 2 lat temu
TabView.cs.meta cfdbf69074 2023.7.28 2 lat temu
TextButton.cs cfdbf69074 2023.7.28 2 lat temu
TextButton.cs.meta cfdbf69074 2023.7.28 2 lat temu
TopBar.cs cfdbf69074 2023.7.28 2 lat temu
TopBar.cs.meta cfdbf69074 2023.7.28 2 lat temu

README.md

Resources

This directory contains the UIElements-based user interface components.

Overview

Each component is defined as its own class and file in this directory.

Adding a New Component

Each component is a C# class that extends the UiElements' VisualElement class and provides a UXML factory. If no UXML parameters are required/desired, a simple factory like this (taken from AlertBar) works:

public new class UxmlFactory : UxmlFactory<AlertBar> { }

Just adding this line to the bottom of the component class with the <AlertBar> replaced with the name of the class. Adding UXML parameters used to be covered in the official docs. Until it is returned: look at the source code for any UiElements class such as TextElement.

To use the component in UXML (with editor inspections) the xml schema needs to be updated within the Unity Editor. Instructions on how to do that is contained in ../Assets/.