Code Monkey home page Code Monkey logo

rbx-kyrylo-ui's Introduction

KYRYLO-UI

KYRYLO-UI is a library for the Roblox Studio engine, written in the Luau language. With KYRYLO-UI, developers can create interfaces for their games quickly and easily. This library aims to simplify the process of UI development by providing a set of intuitive and efficient tools.

Features

  • Simple and intuitive API: KYRYLO-UI offers an easy-to-use interface, allowing developers to create UI elements without excessive complexity.

  • Fast and efficient rendering: The library is designed to provide optimal performance, ensuring smooth and responsive UI updates.

  • Customizability: KYRYLO-UI provides a range of customization options, allowing developers to tailor the appearance and behavior of their UI elements to match the style of their game.

  • Event-driven programming: The library utilizes event-driven programming paradigms, enabling developers to create interactive UI elements that respond to user actions.

  • Documentation and examples: Comprehensive documentation and examples are provided to help developers get started quickly and make the most of the library's features.

Previews

image

Documentation: link

Installation

  • Download any release of KYRYLO-UI
  • Place this module script in ReplicatedStorage
  • image
  • Create new local script in StarterPlayerScripts or StarterGui
  • image
  • Create your first window:
-- Services
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")

-- Variables
local LocalPlayer = Players.LocalPlayer

-- Modules
local KUI = require(ReplicatedStorage.KUI_Library)

-- Init
KUI.Init(LocalPlayer.PlayerGui,50,20)

-- Test1 window
local Window = KUI.Window.new("Test1") -- create new window

Window:Show() -- show your window

-- Custom
Window:SetCorner(10) -- set corner of your window
Window:SetHeader("Test Window",{true,"close"}) -- set/add header for your window

-- Lines
local firstLine = KUI.Line.new("MyFirstLine",3)
local secondLine = KUI.Line.new("MySecondLine",2)

Window:SetLines( { firstLine, secondLine } )

-- Components
local nameInput = KUI.InputText.new("Your Name:") -- create new input text
local changeNameButton = KUI.Button.new("Change Name") -- create new button

nameInput:SetSizeOperator(8)
changeNameButton:SetSizeOperator(5)

firstLine:AddComponent( nameInput )
secondLine:AddComponent( changeNameButton )
  • Final! You create your first window with KYRYLO-UI!
  • image
  • Documentation

Contributing

rbx-kyrylo-ui's People

Contributors

kyrylo-ua avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.