├── .gitignore ├── LICENSE.md ├── README.md ├── conf.lua ├── fonts.lua ├── fonts ├── neon │ ├── NEON CLUB MUSIC.otf │ ├── NEON CLUB MUSIC_READ ME.txt │ └── NEON CLUB MUSIC_bold.otf ├── pixel7 │ ├── readme.txt │ └── smallest_pixel-7.ttf ├── proggy │ ├── Licence.txt │ ├── ProggyTiny.ttf │ └── proggy-square-rr.ttf └── roboto │ ├── LICENSE.txt │ ├── Roboto-Bold.ttf │ └── Roboto-Regular.ttf ├── images.lua ├── img ├── arrow.png ├── ball.png ├── bg1.png ├── bg2.png ├── bg3.png ├── bg4.png ├── bg_button_alt.png ├── clickbait_kitana.png ├── enemy.png ├── joy_layer_1.png ├── joy_layer_2.png ├── joy_layer_3.png ├── logo.png ├── marco.png ├── ship_1.png ├── ship_2.png ├── slider_and_toggle.png └── unnamed.png ├── main.lua ├── metal_theme ├── bg_button.png ├── bg_multi.png ├── bg_progressbar.png ├── bg_slider.png ├── bg_slider_vertical.png ├── bg_text.png ├── bg_toggle.png ├── fg_progressbar.png ├── fg_slider.png ├── fg_slider_on.png ├── fg_slider_vertical.png ├── fg_slider_vertical_on.png ├── fg_toggle.png └── fg_toggle_on.png ├── sounds ├── button_click.ogg ├── click.ogg ├── click2.ogg └── click2.wav ├── styleManager.lua └── urutora ├── LICENSE.md ├── README.md ├── animation.lua ├── baseNode.lua ├── button.lua ├── class.lua ├── conf.lua ├── fonts.lua ├── image.lua ├── images.lua ├── init.lua ├── joy.lua ├── katsudo.lua ├── main.lua ├── multi.lua ├── panel.lua ├── progressBar.lua ├── slider.lua ├── styleManager.lua ├── text.lua ├── toggle.lua ├── urutora.lua └── utils.lua /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/README.md -------------------------------------------------------------------------------- /conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/conf.lua -------------------------------------------------------------------------------- /fonts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts.lua -------------------------------------------------------------------------------- /fonts/neon/NEON CLUB MUSIC.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/neon/NEON CLUB MUSIC.otf -------------------------------------------------------------------------------- /fonts/neon/NEON CLUB MUSIC_READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/neon/NEON CLUB MUSIC_READ ME.txt -------------------------------------------------------------------------------- /fonts/neon/NEON CLUB MUSIC_bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/neon/NEON CLUB MUSIC_bold.otf -------------------------------------------------------------------------------- /fonts/pixel7/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/pixel7/readme.txt -------------------------------------------------------------------------------- /fonts/pixel7/smallest_pixel-7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/pixel7/smallest_pixel-7.ttf -------------------------------------------------------------------------------- /fonts/proggy/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/proggy/Licence.txt -------------------------------------------------------------------------------- /fonts/proggy/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/proggy/ProggyTiny.ttf -------------------------------------------------------------------------------- /fonts/proggy/proggy-square-rr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/proggy/proggy-square-rr.ttf -------------------------------------------------------------------------------- /fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/images.lua -------------------------------------------------------------------------------- /img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/arrow.png -------------------------------------------------------------------------------- /img/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/ball.png -------------------------------------------------------------------------------- /img/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/bg1.png -------------------------------------------------------------------------------- /img/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/bg2.png -------------------------------------------------------------------------------- /img/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/bg3.png -------------------------------------------------------------------------------- /img/bg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/bg4.png -------------------------------------------------------------------------------- /img/bg_button_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/bg_button_alt.png -------------------------------------------------------------------------------- /img/clickbait_kitana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/clickbait_kitana.png -------------------------------------------------------------------------------- /img/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/enemy.png -------------------------------------------------------------------------------- /img/joy_layer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/joy_layer_1.png -------------------------------------------------------------------------------- /img/joy_layer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/joy_layer_2.png -------------------------------------------------------------------------------- /img/joy_layer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/joy_layer_3.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/marco.png -------------------------------------------------------------------------------- /img/ship_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/ship_1.png -------------------------------------------------------------------------------- /img/ship_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/ship_2.png -------------------------------------------------------------------------------- /img/slider_and_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/slider_and_toggle.png -------------------------------------------------------------------------------- /img/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/img/unnamed.png -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/main.lua -------------------------------------------------------------------------------- /metal_theme/bg_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_button.png -------------------------------------------------------------------------------- /metal_theme/bg_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_multi.png -------------------------------------------------------------------------------- /metal_theme/bg_progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_progressbar.png -------------------------------------------------------------------------------- /metal_theme/bg_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_slider.png -------------------------------------------------------------------------------- /metal_theme/bg_slider_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_slider_vertical.png -------------------------------------------------------------------------------- /metal_theme/bg_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_text.png -------------------------------------------------------------------------------- /metal_theme/bg_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/bg_toggle.png -------------------------------------------------------------------------------- /metal_theme/fg_progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_progressbar.png -------------------------------------------------------------------------------- /metal_theme/fg_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_slider.png -------------------------------------------------------------------------------- /metal_theme/fg_slider_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_slider_on.png -------------------------------------------------------------------------------- /metal_theme/fg_slider_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_slider_vertical.png -------------------------------------------------------------------------------- /metal_theme/fg_slider_vertical_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_slider_vertical_on.png -------------------------------------------------------------------------------- /metal_theme/fg_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_toggle.png -------------------------------------------------------------------------------- /metal_theme/fg_toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/metal_theme/fg_toggle_on.png -------------------------------------------------------------------------------- /sounds/button_click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/sounds/button_click.ogg -------------------------------------------------------------------------------- /sounds/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/sounds/click.ogg -------------------------------------------------------------------------------- /sounds/click2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/sounds/click2.ogg -------------------------------------------------------------------------------- /sounds/click2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/sounds/click2.wav -------------------------------------------------------------------------------- /styleManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/styleManager.lua -------------------------------------------------------------------------------- /urutora/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/LICENSE.md -------------------------------------------------------------------------------- /urutora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/README.md -------------------------------------------------------------------------------- /urutora/animation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/animation.lua -------------------------------------------------------------------------------- /urutora/baseNode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/baseNode.lua -------------------------------------------------------------------------------- /urutora/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/button.lua -------------------------------------------------------------------------------- /urutora/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/class.lua -------------------------------------------------------------------------------- /urutora/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/conf.lua -------------------------------------------------------------------------------- /urutora/fonts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/fonts.lua -------------------------------------------------------------------------------- /urutora/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/image.lua -------------------------------------------------------------------------------- /urutora/images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/images.lua -------------------------------------------------------------------------------- /urutora/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/init.lua -------------------------------------------------------------------------------- /urutora/joy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/joy.lua -------------------------------------------------------------------------------- /urutora/katsudo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/katsudo.lua -------------------------------------------------------------------------------- /urutora/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/main.lua -------------------------------------------------------------------------------- /urutora/multi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/multi.lua -------------------------------------------------------------------------------- /urutora/panel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/panel.lua -------------------------------------------------------------------------------- /urutora/progressBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/progressBar.lua -------------------------------------------------------------------------------- /urutora/slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/slider.lua -------------------------------------------------------------------------------- /urutora/styleManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/styleManager.lua -------------------------------------------------------------------------------- /urutora/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/text.lua -------------------------------------------------------------------------------- /urutora/toggle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/toggle.lua -------------------------------------------------------------------------------- /urutora/urutora.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/urutora.lua -------------------------------------------------------------------------------- /urutora/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/urutora/HEAD/urutora/utils.lua --------------------------------------------------------------------------------