Distance- Falloff- Require to enable "
Custom Distance". Default in blender is 40 which is way too much for 99% cases.
- Require to enable "
- This value needs to be set depending of your light path length.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ---@param x The value you want to retrieve flags from | |
| ---@return table? | |
| local function findFlags(x) | |
| if not x or type(x) ~= 'number' then return end | |
| -- All flags available for the value. Here is flags for MLO portal | |
| local all_flags = { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8196 } | |
| local flags = {} | |
| for _, flag in ipairs(all_flags) do |