SULFUR Native UI Lib
A native Options screen UI library for SULFUR BepInEx mods.
| Last updated | 7 hours ago |
| Total downloads | 31 |
| Total rating | 0 |
| Categories | Libraries |
| Dependency string | ryuka_labs-SULFUR_Native_UI_Lib-0.7.0 |
| Dependants | 1 other package depends on this package |
This mod requires the following mods to function
BepInEx-BepInExPack
BepInEx pack for Mono Unity games. Preconfigured and ready to use.
Preferred version: 5.4.2100README
SULFUR Native UI Lib
A native Options screen UI library for SULFUR BepInEx mods.
This library allows other modders to register custom pages inside the game's native Options screen and build native-style UI for mod configuration, debug panels, help pages, and other in-game tools.
Features
- Native Options screen page registration
- Custom Options categories
- Foldout sections
- Native-style setting rows
- Toggle, text, number, and cycle controls
- Themed section groups
- Footer/status controls
- Localization helpers
- High-performance row updates for large config pages
For Players
This is a library mod.
It usually does nothing by itself. Install it only if another mod requires it.
For Mod Developers
Source code and full documentation are available on GitHub:
https://github.com/ryuka-dev/SULFUR-Native-UI-Lib
The GitHub documentation is the latest source of truth for API usage, examples, performance rules, themed groups, localization, and config editor patterns.
Installation
Install this mod with BepInEx.
Place the DLL under:
BepInEx/plugins/SULFURNativeUILib/
Recommended structure:
BepInEx/plugins/SULFURNativeUILib/
└─ SULFUR Native UI Lib.dll
Requirements
- SULFUR
- BepInEx 5
Source Code
The source code is available here:
https://github.com/ryuka-dev/SULFUR-Native-UI-Lib
The repository contains only original library source code and documentation. It does not include SULFUR game files, Unity assemblies, BepInEx binaries, paid assets, or decompiled game source.
Notes
This is a developer library. End users only need it when another mod lists it as a dependency.
---
## CHANGELOG.md
```md
# Changelog
## 0.6.3
- Added themed section group documentation standard.
- Added guidance for large config editor pages.
- Improved foldout hierarchy styling standard.
- Added row-handle based update pattern for high-performance UI updates.
- Documented that normal value edits should not rebuild the whole page.
- Documented ASCII foldout arrows for TMP font compatibility.
- Documented themed group border behavior and Unity Outline pitfalls.
## 0.6.2
- Added `SulfurSettingHandle`.
- Added high-performance `AddSettingToggleEx`, `AddSettingTextEx`, `AddSettingNumberEx`, and `AddSettingCycleEx`.
- Cached sample text and native option width per page context.
- Preserved existing `AddSettingToggle`, `AddSettingText`, `AddSettingNumber`, and `AddSettingCycle` APIs.
## 0.6.1
- Added custom Options page registration.
- Added basic native-style row creation helpers.
- Added localization helper support.