DevsDaddy / OneUIKit

One UI Kit - Full Featured and Open-Source UI Library with dozens of elements and ready-to-use views for your Unity Games and Applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unity OneUI Kit

image Welcome to the One UI Kit for Unity! This set includes dozens of different elements, components, and graphical styles for creating your user interface in games or applications on Unity.

Features:

  • Modern Ready-to-Use UI;
  • Animations, Shader Effects, UI Particles;
  • Dozens of ready-to-use components;
  • Huge set of ready-to-use icons;
  • Many different examples of screens and navigation;
  • Optimized for Mobile;
  • Ready for MVC/MVP/MVVM;

Depedencies:

Installation process:

Usage

Just download latest release and see our example scene with different screens, navigation and binding system, shaders and effects examples;

Views Binding:

UIFramework.BindView(Instantiate(homeView), true); // Home Page
UIFramework.BindView(Instantiate(pageView));       // Sub-Page

Navigate to another view:

EventMessenger.Main.Publish(new OnViewNavigated {
    View = typeof(DemoPageView),
    Display = new DisplayOptions { IsAnimated = true, Delay = 0f, Duration = 0.5f, Type = AnimationType.Fade },
    Data = new DemoPageView.Data {
        Title = "Demo Page",
        Content = pageContent
    }
});

Ready to Use Screens and Components

The sample interface and windows shown below are already included in the project. For some of them it is easiest to use the Event Framework - an example of which is also in the Demo-scene. image image image image image image image image image

Join Community

Support Me

You can support the development and updating of libraries and assemblies by dropping a coin:

Bitcoin (BTC)bc1qef2d34r4xkrm48zknjdjt7c0ea92ay9m2a7q55
Etherium (ETH)0x1112a2Ef850711DF4dE9c432376F255f416ef5d0
Boostyhttps://boosty.to/devsdaddy

About

One UI Kit - Full Featured and Open-Source UI Library with dozens of elements and ready-to-use views for your Unity Games and Applications

License:MIT License


Languages

Language:C# 88.3%Language:ShaderLab 6.5%Language:HLSL 5.1%