Noita

File information

Last updated

Original upload

Created by

cisus

Uploaded by

cisus

Virus scan

Safe to use

Tags for this mod

About this mod

Allows you to change your Robes, Cape, Hands and Belt to ANY RGB Color, or a random color, every new game.

Permissions and credits
Changelogs
Donations
By default, your Robes and Cape will change to a completely random color every new game!

You can also modify your Belt and Hands colors! Just modify or set them to random through "mods/RobesAnyColor/init.lua" CONFIG section.


HOW TO MODIFY YOUR COLORS

If you wish to set a specific color for your robes and cape, you can edit the CONFIG section of file "init.lua" within your folder: mods/RobesAnyColor

- You can set any RGB value of your choosing, but for custom colors you must disable Random colors by changing from:
random_color = true
- TO -
random_color = false

- Near the top of "init.lua" file inside "mods/RobesAnyColor" you will see:

local random_robe_and_cape_color = true

local cape_rgba = {255, 255, 255, 255}
local cape_edge_rgba = {255, 255, 255, 255}
local robe_rgba = {255, 255, 255, 255}

- If you wanted Red(255,0,0) cape and Blue(0,0,255) robe you would change it to this:

local random_robe_and_cape_color = false

local cape_rgba = {255, 0, 0, 255}
local cape_edge_rgba = {255, 0, 0, 255}
local robe_rgba = {0, 0, 255, 255}



* This mod REQUIRES advanced permissions through usage of "No API Restrictions"
* - This is because it must write to the shader files within "Noita/mods/RobesAnyColor/data/shaders" folder via LUA in order to change the current colors used.