EasyMCMΒΆ

EasyMCM is a UI Library for Morrowind, allowing modders to quickly generate Mod Config Menus and preconfigured UI elements without touching UI code.

Example:

local function registerModConfig()
    EasyMCM = require("easyMCM.EasyMCM")
    local template = EasyMCM.createTemplate("Basic MCM")
    local page = template:createPage()
    local category = page:createCategory("Settings")
    category:createButton{ buttonText = "Press" }
    EasyMCM.register(template)
end
event.register("modConfigReady", registerModConfig)

See the Tutorial for a more detailed walkthrough.