Skip to content
Robert Jelic edited this page Apr 2, 2022 · 63 revisions

You want to know how to use my UI Framework for your projects? Easy! Just use the following command in your computercraft computer/turtle/pocket comp.:

wget https://raw.githubusercontent.com/NoryiE/NyoUI/master/NyoUI.lua NyoUI.lua

After that, you just have to put this on top of your program:

local NyoUI = dofile("NyoUI.lua")

now you are able to access everything from NyoUI.lua.

Objectlist

  • NyoUI -- The Manager
  • Object -- the base class for everything
  • Frame -- Frames are the objects where everything gets drawn on, titanium would call them container
  • Button -- for some clicki clicki
  • Label -- you also need text to your clickis
  • Dropdown -- a dropdown menu where you can change the value to what you added as item
  • Checkbox -- to create true or false values
  • Input -- for creating some user input (password, text, numbers)
  • Radio -- something like lists but with more positional flexability
  • Textfield -- bigger inputs (it works like the shell editor)
  • Scrollbar -- special thing. it can be used for creating scrollbars (was intended) but also if you want the user to change a number value(1 - 100 as example)
  • Program -- more special thing, with that you are able to execute programs (shell is also a program so yea you can execute a shell)
  • Animation -- with animations you are able to create cute !simple! animations
  • Timer -- with timers you are able to create function which gets called every x amount of seconds
  • Slider -- WIP

Useful Pages

  • Design -- How to create beautiful designs

Wiki Navigation

Home
Clone this wiki locally