Fix incorrect radius on object light

This commit is contained in:
Jarrod Doyle 2024-09-22 15:03:24 +01:00
parent 6c143058e9
commit b55d58b9fe
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class Program
{ {
position = brush.position, position = brush.position,
color = HsbToRgb(lightColor.Hue * 360, lightColor.Saturation, light.Brightness), color = HsbToRgb(lightColor.Hue * 360, lightColor.Saturation, light.Brightness),
radius = light.Brightness, radius = light.Radius,
}); });
} }
else else