![]() |
VOOZH | about |
dotnet add package Gloam.Core.Ui --version 0.7.0
NuGet\Install-Package Gloam.Core.Ui -Version 0.7.0
<PackageReference Include="Gloam.Core.Ui" Version="0.7.0" />
<PackageVersion Include="Gloam.Core.Ui" Version="0.7.0" />Directory.Packages.props
<PackageReference Include="Gloam.Core.Ui" />Project file
paket add Gloam.Core.Ui --version 0.7.0
#r "nuget: Gloam.Core.Ui, 0.7.0"
#:package Gloam.Core.Ui@0.7.0
#addin nuget:?package=Gloam.Core.Ui&version=0.7.0Install as a Cake Addin
#tool nuget:?package=Gloam.Core.Ui&version=0.7.0Install as a Cake Tool
GUI system with optimized control management for Gloam engine
Gloam.Core.Ui provides a comprehensive GUI system designed specifically for roguelike games, featuring optimized control management, flexible layouts, and efficient rendering.
using Gloam.Core.Ui;
using Gloam.Core.Ui.Controls;
// Create a basic UI layout
var container = new ContainerControl
{
Position = new Position(10, 5),
Size = new Size(50, 20)
};
var progressBar = new ProgressBar
{
Position = new Position(5, 2),
Size = new Size(40, 1),
Value = 75,
MaxValue = 100
};
container.AddChild(progressBar);
// Stack panel with automatic layout
var stack = new StackPanel
{
Orientation = StackOrientation.Vertical,
Position = new Position(5, 5)
};
stack.AddChild(new TextLabel { Text = "Health:" });
stack.AddChild(new ProgressBar { Value = 80, MaxValue = 100 });
stack.AddChild(new TextLabel { Text = "Mana:" });
stack.AddChild(new ProgressBar { Value = 45, MaxValue = 100 });
MIT License - see LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 2 NuGet packages that depend on Gloam.Core.Ui:
| Package | Downloads |
|---|---|
|
Gloam.Console.Render
High-performance console rendering backend for roguelike games with ANSI color support, optimized text rendering, and buffer pooling. |
|
|
Gloam.Runtime
High-performance dependency injection host for roguelike games with optimized game loop, scene management, and layer rendering. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.7.0 | 293 | 8/31/2025 |
Initial release with optimized GUI control management and event system.