├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── example ├── audio │ ├── sfx │ │ ├── Selection_Ukelele chord 04_mod.ogg │ │ ├── Sounds from Sonniss.com - GDC 2016;17;18;19;20- Game Audio Bundle.txt │ │ └── voice_fun_man_character_deep_laugh_11.ogg │ └── text │ │ ├── cackle.ogg │ │ ├── default.ogg │ │ ├── neue.ogg │ │ └── typing.ogg ├── conf.lua ├── font │ ├── Golden_Apple_LICENSE.txt │ ├── comic_neue_13.ttf │ ├── comic_neue_bold_19.ttf │ ├── earth_illusion.fnt │ ├── earth_illusion.png │ ├── earth_illusion_LICENSE.txt │ ├── golden_apple.fnt │ ├── golden_apple.png │ ├── monogram_extended_custom.ttf │ ├── monogram_extended_custom_credits.txt │ ├── shinonome_12.ttf │ ├── shinonome_14.ttf │ ├── shinonome_16.ttf │ └── shinonome_LICENSE.txt ├── images │ ├── bg.png │ ├── frame │ │ ├── bk_24.png │ │ ├── blk_8.png │ │ ├── bubble_8.png │ │ ├── cart_8.png │ │ ├── default_8.png │ │ ├── eb_8.png │ │ ├── ff_8.png │ │ ├── m3_8.png │ │ └── utp_8.png │ ├── pixabayneue.png │ ├── pixabaywitch and pixabayneue is from pixabay - public domain.txt │ ├── pixabaywitch.png │ ├── tangoicons.png │ └── tangoicons.txt ├── library │ ├── slog-frame.lua │ ├── slog-icon.lua │ ├── slog-pixel.lua │ └── slog-text.lua ├── longtext.lua ├── main.lua └── run.bat ├── readme.md └── screenshots ├── 01.gif ├── 02.gif ├── 3.png ├── 4.png ├── 5.gif ├── 6.gif ├── 7.gif ├── 8.gif ├── bius.png ├── dropshadow.png ├── effects.gif ├── ex.gif ├── mirror.png └── rotate.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | example/.vscode/settings.json 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Lua.workspace.checkThirdParty": false 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/LICENSE -------------------------------------------------------------------------------- /example/audio/sfx/Selection_Ukelele chord 04_mod.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/audio/sfx/Selection_Ukelele chord 04_mod.ogg -------------------------------------------------------------------------------- /example/audio/sfx/Sounds from Sonniss.com - GDC 2016;17;18;19;20- Game Audio Bundle.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/audio/sfx/voice_fun_man_character_deep_laugh_11.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/audio/sfx/voice_fun_man_character_deep_laugh_11.ogg -------------------------------------------------------------------------------- /example/audio/text/cackle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/audio/text/cackle.ogg -------------------------------------------------------------------------------- /example/audio/text/default.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/audio/text/default.ogg -------------------------------------------------------------------------------- /example/audio/text/neue.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/audio/text/neue.ogg -------------------------------------------------------------------------------- /example/audio/text/typing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/audio/text/typing.ogg -------------------------------------------------------------------------------- /example/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/conf.lua -------------------------------------------------------------------------------- /example/font/Golden_Apple_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/Golden_Apple_LICENSE.txt -------------------------------------------------------------------------------- /example/font/comic_neue_13.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/comic_neue_13.ttf -------------------------------------------------------------------------------- /example/font/comic_neue_bold_19.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/comic_neue_bold_19.ttf -------------------------------------------------------------------------------- /example/font/earth_illusion.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/earth_illusion.fnt -------------------------------------------------------------------------------- /example/font/earth_illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/earth_illusion.png -------------------------------------------------------------------------------- /example/font/earth_illusion_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/earth_illusion_LICENSE.txt -------------------------------------------------------------------------------- /example/font/golden_apple.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/golden_apple.fnt -------------------------------------------------------------------------------- /example/font/golden_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/golden_apple.png -------------------------------------------------------------------------------- /example/font/monogram_extended_custom.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/monogram_extended_custom.ttf -------------------------------------------------------------------------------- /example/font/monogram_extended_custom_credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/monogram_extended_custom_credits.txt -------------------------------------------------------------------------------- /example/font/shinonome_12.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/shinonome_12.ttf -------------------------------------------------------------------------------- /example/font/shinonome_14.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/shinonome_14.ttf -------------------------------------------------------------------------------- /example/font/shinonome_16.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/shinonome_16.ttf -------------------------------------------------------------------------------- /example/font/shinonome_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/font/shinonome_LICENSE.txt -------------------------------------------------------------------------------- /example/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/bg.png -------------------------------------------------------------------------------- /example/images/frame/bk_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/bk_24.png -------------------------------------------------------------------------------- /example/images/frame/blk_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/blk_8.png -------------------------------------------------------------------------------- /example/images/frame/bubble_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/bubble_8.png -------------------------------------------------------------------------------- /example/images/frame/cart_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/cart_8.png -------------------------------------------------------------------------------- /example/images/frame/default_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/default_8.png -------------------------------------------------------------------------------- /example/images/frame/eb_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/eb_8.png -------------------------------------------------------------------------------- /example/images/frame/ff_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/ff_8.png -------------------------------------------------------------------------------- /example/images/frame/m3_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/m3_8.png -------------------------------------------------------------------------------- /example/images/frame/utp_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/frame/utp_8.png -------------------------------------------------------------------------------- /example/images/pixabayneue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/pixabayneue.png -------------------------------------------------------------------------------- /example/images/pixabaywitch and pixabayneue is from pixabay - public domain.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/images/pixabaywitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/pixabaywitch.png -------------------------------------------------------------------------------- /example/images/tangoicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/tangoicons.png -------------------------------------------------------------------------------- /example/images/tangoicons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/images/tangoicons.txt -------------------------------------------------------------------------------- /example/library/slog-frame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/library/slog-frame.lua -------------------------------------------------------------------------------- /example/library/slog-icon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/library/slog-icon.lua -------------------------------------------------------------------------------- /example/library/slog-pixel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/library/slog-pixel.lua -------------------------------------------------------------------------------- /example/library/slog-text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/library/slog-text.lua -------------------------------------------------------------------------------- /example/longtext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/longtext.lua -------------------------------------------------------------------------------- /example/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/example/main.lua -------------------------------------------------------------------------------- /example/run.bat: -------------------------------------------------------------------------------- 1 | "c:\Program Files (x86)\LOVE\love.exe" . -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/readme.md -------------------------------------------------------------------------------- /screenshots/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/01.gif -------------------------------------------------------------------------------- /screenshots/02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/02.gif -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/5.gif -------------------------------------------------------------------------------- /screenshots/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/6.gif -------------------------------------------------------------------------------- /screenshots/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/7.gif -------------------------------------------------------------------------------- /screenshots/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/8.gif -------------------------------------------------------------------------------- /screenshots/bius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/bius.png -------------------------------------------------------------------------------- /screenshots/dropshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/dropshadow.png -------------------------------------------------------------------------------- /screenshots/effects.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/effects.gif -------------------------------------------------------------------------------- /screenshots/ex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/ex.gif -------------------------------------------------------------------------------- /screenshots/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/mirror.png -------------------------------------------------------------------------------- /screenshots/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysl-dev/SYSL-Text/HEAD/screenshots/rotate.png --------------------------------------------------------------------------------