two flash colors

This commit is contained in:
Tonton Th 2025-01-01 16:27:57 +01:00
parent e9ae829ab3
commit 977baa89f4

View File

@ -38,9 +38,15 @@ union {
#local xR = (rand(Rng2)-0.5000) * kR;
#local yR = (rand(Rng2)-0.5000) * kR;
#local zR = (rand(Rng2)-0.5000) * kR;
#local Red = abs(sin(NormClock * 35.536));
#local Red = Red * rand(Rng2);
light_source { <xR, yR, xR>, rgb <Red, 0.03, 0.03>
#local Value = sin(NormClock * 25.536);
#if (Value < 0)
#local Couleur = rgb <abs(Value), 0, 0>;
#else
#local Couleur = rgb <0, abs(Value), 0>;
#end
#local Couleur = Couleur * rand(Rng2);
light_source {
<xR, yR, xR>, Couleur
fade_distance 0.99
fade_power 1.58
}