Updated Home (markdown)

Robert Jelic
2022-04-03 21:09:31 +02:00
parent ba5e6fa0c5
commit 62335c6e71

34
Home.md

@@ -1,30 +1,30 @@
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`
`wget https://raw.githubusercontent.com/NoryiE/Basalt/master/basalt.lua basalt.lua`
After that, you just have to put this on top of your program:
`local NyoUI = dofile("NyoUI.lua")`
`local basalt = dofile("basalt.lua")`
now you are able to access everything from NyoUI.lua.
# Objectlist
* [NyoUI](https://github.com/NoryiE/NyoUI/wiki/NyoUI) -- The Manager
* [Object](https://github.com/NoryiE/NyoUI/wiki/Object) -- the base class for everything
* [Frame](https://github.com/NoryiE/NyoUI/wiki/Frame) -- Frames are the objects where everything gets drawn on, titanium would call them container
* [Button](https://github.com/NoryiE/NyoUI/wiki/Button) -- for some clicki clicki
* [Label](https://github.com/NoryiE/NyoUI/wiki/Label) -- you also need text to your clickis
* [Dropdown](https://github.com/NoryiE/NyoUI/wiki/Dropdown) -- a dropdown menu where you can change the value to what you added as item
* [Checkbox](https://github.com/NoryiE/NyoUI/wiki/Checkbox) -- to create true or false values
* [Input](https://github.com/NoryiE/NyoUI/wiki/Input) -- for creating some user input (password, text, numbers)
* [Radio](https://github.com/NoryiE/NyoUI/wiki/Radio) -- something like lists but with more positional flexability
* [Textfield](https://github.com/NoryiE/NyoUI/wiki/Textfield) -- bigger inputs (it works like the shell editor)
* [Scrollbar](https://github.com/NoryiE/NyoUI/wiki/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](https://github.com/NoryiE/NyoUI/wiki/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](https://github.com/NoryiE/NyoUI/wiki/Animation) -- with animations you are able to create cute !simple! animations
* [Timer](https://github.com/NoryiE/NyoUI/wiki/Timer) -- with timers you are able to create function which gets called every x amount of seconds
* [Slider](https://github.com/NoryiE/NyoUI/wiki/Slider) -- WIP
* [Basalt](https://github.com/NoryiE/Basalt/wiki/Basalt) -- The Manager
* [Object](https://github.com/NoryiE/Basalt/wiki/Object) -- the base class for everything
* [Frame](https://github.com/NoryiE/Basalt/wiki/Frame) -- Frames are the objects where everything gets drawn on, titanium would call them container
* [Button](https://github.com/NoryiE/Basalt/wiki/Button) -- for some clicki clicki
* [Label](https://github.com/NoryiE/Basalt/wiki/Label) -- you also need text to your clickis
* [Dropdown](https://github.com/NoryiE/Basalt/wiki/Dropdown) -- a dropdown menu where you can change the value to what you added as item
* [Checkbox](https://github.com/NoryiE/Basalt/wiki/Checkbox) -- to create true or false values
* [Input](https://github.com/NoryiE/Basalt/wiki/Input) -- for creating some user input (password, text, numbers)
* [Radio](https://github.com/NoryiE/Basalt/wiki/Radio) -- something like lists but with more positional flexability
* [Textfield](https://github.com/NoryiE/Basalt/wiki/Textfield) -- bigger inputs (it works like the shell editor)
* [Scrollbar](https://github.com/NoryiE/Basalt/wiki/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](https://github.com/NoryiE/Basalt/wiki/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](https://github.com/NoryiE/Basalt/wiki/Animation) -- with animations you are able to create cute !simple! animations
* [Timer](https://github.com/NoryiE/Basalt/wiki/Timer) -- with timers you are able to create function which gets called every x amount of seconds
* [Slider](https://github.com/NoryiE/Basalt/wiki/Slider) -- WIP
# Useful Pages