HAHA, it lasted 2 hours and I didn’t know how to apply it. In fact, I think my code didn’t use the multiplier of 4, so thank you, either I’m bad at this or I already had it without realizing it (it’s very laggy).
local function GetColor(Buffer:buffer,Offset:number,ColorID:number)
local Color = ColorMaps[ColorID][Offset]
if Color then
return Color[1],Color[2],Color[3],Color[4]
end
local r = buffer.readu8(Buffer, Offset) / 255
local g = buffer.readu8(Buffer, Offset + 1) / 255
local b = buffer.readu8(Buffer, Offset + 2) / 255
local a = buffer.readu8(Buffer, Offset + 3)
if a == 0 then
a = false
end
ColorMaps[ColorID][Offset] = {r,g,b,a}
return r,g,b,a
end
local function GetNormal(NormalMap:buffer,offset:number, DephthEffect:number,NormalID:number)
local getNormal = NormalMaps[NormalID][offset]
if getNormal then
return (getNormal*DephthEffect).Unit
end
local r = (buffer.readu8(NormalMap, offset) / 255 * 2 - 1)
local g = (buffer.readu8(NormalMap, offset + 1) / 255 * 2 - 1)
local b = (buffer.readu8(NormalMap, offset + 2) / 255 * 2 - 1)
local NewNormal = Vector3.new(r , g , b )
NormalMaps[NormalID][offset] = NewNormal
return (NewNormal*DephthEffect).Unit
end
local function CalculateLighting(normal: Vector3, lightDir: Vector2, brightness: number, distance: number, range: number, depthEffect: number)
local dotProduct = math.max(normal:Dot(lightDir), 0)
local attenuation = math.clamp(1 - (distance / range), 0, 1)
local depthFactor = math.clamp(attenuation ^ depthEffect, 0, 1)
local adjustedLighting = math.clamp(dotProduct * depthEffect, 0, 1)
return adjustedLighting * brightness * depthFactor
end
function UPDATETEXTURE(ID)
local DepthEffect = Depths[ID]
local Image = EditablesImages[ID]
local Buffer, BufferNormal = BufferColors[ID], BufferNomals[ID]
if not Image then
warn("Error, ID is not valid")
return false
end
local DataLights = Lights[ID]
local ImageSize = Image.Size
local NormalDir = NormalDirections[ID]
for y = 0, ImageSize.Y - 1 do
for x = 0, ImageSize.X - 1 do
local offset = (y * ImageSize.X + x) * 4
local normal = GetNormal(BufferNormal, offset, DepthEffect, ID)
local r, g, b, a = GetColor(Buffer, offset, ID)
if a then
local pixelPos = Vector2.new(x / ImageSize.X, y / ImageSize.Y)
local totalLightIntensity = 0
for _, light in pairs(DataLights) do
local lightPos = light.Position or Vector2.zero
local brightness = light.Brightness or 1
local range = light.Range or 1
local distance = (pixelPos - lightPos).Magnitude
local lightDir = Vector3.new((lightPos.X- pixelPos.X)*NormalDir.X, (lightPos.Y - pixelPos.Y)*NormalDir.Y,1).Unit
local lightIntensity = CalculateLighting(normal, lightDir, brightness, distance, range, DepthEffect)
totalLightIntensity += lightIntensity
end
local depthDarkness = math.clamp((1 - normal.Z) * DepthEffect, 0, 1)
r = math.clamp((r * (1 - depthDarkness)) + totalLightIntensity, 0, 1)
g = math.clamp((g * (1 - depthDarkness)) + totalLightIntensity, 0, 1)
b = math.clamp((b * (1 - depthDarkness)) + totalLightIntensity, 0, 1)
buffer.writeu8(Buffer, offset, r * 255)
buffer.writeu8(Buffer, offset + 1, g * 255)
buffer.writeu8(Buffer, offset + 2, b * 255)
buffer.writeu8(Buffer, offset + 3, a)
end
end
end
Image:WritePixelsBuffer(Vector2.zero, ImageSize, Buffer)
return true
end
If you are free and consider helping me, I would appreciate it (I don’t demand it, okay).
In case you are interested in reading it more in depth:
LightEffect.lua (7.4 KB)
250x250