{"id":23392689,"url":"https://github.com/reuss-dev/angeliclove","last_synced_at":"2026-04-26T23:31:14.854Z","repository":{"id":269206506,"uuid":"851826110","full_name":"REUSS-dev/AngelicLove","owner":"REUSS-dev","description":"Angelic/Celestial aesthetic fonts for Love2D 0.10.0+","archived":false,"fork":false,"pushed_at":"2024-12-22T04:53:25.000Z","size":69,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-14T11:53:23.855Z","etag":null,"topics":["love","love2d","love2d-library","lua","nier","nier-automata","nier-reincarnation","nier-replicant"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/REUSS-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-03T19:03:05.000Z","updated_at":"2024-12-21T18:11:15.000Z","dependencies_parsed_at":"2024-12-21T19:19:51.803Z","dependency_job_id":"44c7fc5a-1e73-472e-9465-18038de4da46","html_url":"https://github.com/REUSS-dev/AngelicLove","commit_stats":null,"previous_names":["reuss-dev/angeliclove"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/REUSS-dev%2FAngelicLove","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/REUSS-dev%2FAngelicLove/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/REUSS-dev%2FAngelicLove/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/REUSS-dev%2FAngelicLove/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/REUSS-dev","download_url":"https://codeload.github.com/REUSS-dev/AngelicLove/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247873395,"owners_count":21010447,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["love","love2d","love2d-library","lua","nier","nier-automata","nier-reincarnation","nier-replicant"],"created_at":"2024-12-22T05:14:50.750Z","updated_at":"2026-04-26T23:31:14.828Z","avatar_url":"https://github.com/REUSS-dev.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AngelicLove\nAngelicLove - is a set of vectorized self-constructing Angelic language image-fonts for Love2D.  \nThis project is inspired with NieR game series by Yoko Taro (at Square Enix) and mimics font variants presented in the games.  \nYou do not need to download anything external or store any files except the module itself for this library to work. All fonts are drawn and generated internally.  \n\u003e [!IMPORTANT]\n\u003e Love2D 0.10.0 and higher is required.\n\n![image](https://github.com/user-attachments/assets/8b85bc53-b6be-41d5-b9e6-4850d524e809)\n\n# Installation\n* Download latest angeliclove.lua from releases and put it in your require path.\n  \nOR\n* submodule branch [angeliclove](https://github.com/REUSS-dev/AngelicLove/tree/angeliclove) of this repository into your project\n\n# Usage\n```lua\n-- Import AngelicLove via require as you usually do for modules\nlocal angelic = require(\"angeliclove\")\n\n-- Create new AngelicFont object via `new` call from angeliclove lib\nlocal angelAuto = angelic.new(angelic.FontStyle.AUTOMATA, 30)\n\n-- Retrieve font from AngelicFont object and use it for your needs.\nlocal afont = angelAuto:getFont()\n\nfunction love.draw()\n  love.graphics.setFont(afont)\n  love.graphics.print(\"Hello world!\", 100, 100)\nend\n```\n![image](https://github.com/user-attachments/assets/571eca0b-5747-4a43-98ab-732138079a63)  \nYou can also use `afont = angelic.new(angelic.FontStyle.AUTOMATA, 30):getFont()` to create LOVE2D font in one line, if you do not plan to make changes to it.\\\n\\\n`AngelicFont:getFont()` can also be safely called repeatedly.  \nThis allows to reflect changes you do to Angelic font elsewhere.\n```lua\nfunction love.draw()\n  love.graphics.setFont(angelAuto:getFont())\n  love.graphics.print(\"Hello world!\", 100, 100)\nend\n\n-- Makes font smaller when \"F\" key is pressed.\nfunction love.keypressed(key)\n  if key == \"f\" then\n    angelAuto:setSize(20)\n  end\nend\n```\n# Documentation\n### angelic.new(FontStyle|StylePreset style, number size, boolean noVariance): AngelicFont\nCreate new AngelicFont object\n* `FontStyle|StylePreset style` - Font style of your newly created Angelic font. Can be either entry from FontStyle enum or self-defined style preset table (format below).\n* `number size` - Height of a character for a new Angelic font (in pixels)\n* `boolean noVariance` - When true, disables upper-case/lower-case variance for font styles that support it.\n\nA self-defined `StylePreset` can be created and used to create your own \"unicode character to angelic character\" correspondance map for your Angelic font.  \n**Format of self-defined StylePreset table**\n```lua\nlocal stylePreset = {\n  name = \"myPreset\", -- string\n  characterVariant = angelic.CharacterVariant.Automata, -- CharacterVariant\n  characters = { -- table\u003cunicode_character, AngelicCharacter|{AngelicCharacter, AngelicCharacter}\u003e Unicode to Angelic character map.\n    -- Unicode character can be mapped to one Angelic character (both lower-case and upper-case variations of this unicode character will be mapped to this Angelic character)\n    [\"a\"] = angelic.AngelicCharacter.ALEPH\n    -- Or it can be mapped to two Angelic characters. Lower-case variant will use the first element of the table, upper-case variant will use second element of the table. If noVariance is enabled for this Angelic font, upper-case will also use first element of the table as its Angelic character.\n    [\"b\"] = { angelic.AngelicCharacter.BETH, AngelicCharacter.VAU }\n\n    -- All Angelic character names are exposed through enum angelic.AngelicCharacter\n  }\n}\n```\n### enum **FontStyle**\nNames of pre-defined style presets of Angelic alphabet variations used in NieR series games.  \n*Exposed via angelic.FontStyle*\n* FontStyle.REPLICANT = `\"replicant\"`\n* FontStyle.AUTOMATA = `\"automata\"`\n* FontStyle.REINCARNATION = `\"rein\"`\n\n### enum **CharacterVariant**\nNames of Angelic character graphics variant.\n*Exposed via angelic.CharacterVariant*\n* CharacterVariant.AUTOMATA = `\"automata\"` - Robotic style, used in NieR:Automata and ReiN\n* CharacterVariant.REPLICANT = `\"replicant\"` - Runic style, used in NieR:Replicant\n\n### enum **AngelicCharacter**\nNames of Angelic characters used to identify them.\n*Exposed via angelic.AngelicCharacter*\n* ALEPH = `\"aleph\"`\n* BETH = `\"beth\"`\n* CHETH = `\"cheth\"`\n* DALETH = `\"daleth\"`\n* AIN = `\"ain\"`\n* PE = `\"pe\"`\n* GIMEL = `\"gimel\"`\n* HE = `\"he\"`\n* JOD = `\"jod\"`\n* CAPH = `\"caph\"`\n* LAMED = `\"lamed\"`\n* MEM = `\"mem\"`\n* NUN = `\"nun\"`\n* KUFF = `\"kuff\"`\n* RESH = `\"resh\"`\n* SAMECH = `\"samech\"`\n* SHIN = `\"shin\"`\n* TAU = `\"tau\"`\n* THETH = `\"theth\"`\n* VAU = `\"vau\"`\n* ZADE = `\"zade\"`\n* ZAIN = `\"zain\"`\n* RECT = `\"rectangle\"`\n\n## class AngelicFont\n\n### AngelicFont:getFont(): loveFont\nGet love.Font object of this Angelic font to be used in drawing operations.\n\n### AngelicFont:setSize(number size)\nSet new size for this Angelic font.\n* `number size` - Height of a character (in pixels)\n\n### AngelicFont:setStyle(FontStyle|StylePreset style)\nSet new style for this Angelic font.\n* `FontStyle|StylePreset style` - Font style of this Angelic font. Can be either entry from FontStyle enum or self-defined style preset table (format explained above).\n\n### AngelicFont:setNoVariance(boolean noVariance)\nUpdate noVariance parameter for this Angelic font.\n* `boolean noVariance` - When true, disables upper-case/lower-case variance for font styles that support it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freuss-dev%2Fangeliclove","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freuss-dev%2Fangeliclove","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freuss-dev%2Fangeliclove/lists"}