Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

LUtils reference

Lexize edited this page Sep 9, 2022 · 4 revisions

LUtils

Main class of LUtils. Can be accessed with global variable lutils.


  • file (Reference)
    LUtils submodule used for work with files and folders inside your avatar data folder. Always NIL if script runner isn't host.
  • regex (Reference)
    LUtils submodule used for work with Regex in Figura scripts.
  • json (Reference)
    LUtils submodule used for work with JSON in Figura scripts.
  • misc (Reference)
    LUtils submodule that contains features that can't be contained by any category.

How to use:

local file = lutils.file; -- Accessing "file" submodule
local json = lutils.json; -- Accessing "json" submodule
local regex = lutils.regex; -- Accessing "regex" submodule
local misc = lutils.misc; -- Accessing "misc" submodule