So I am getting very close to finding what I need for my thunderstorm effect but, I am stuck on trying to figure out how to set the flashing point light material to occur only so often which is how thunderstorms flash here and there and not always, its random and such. Right now it just keeps flashing for some reason even after I set a delay use a function for it.
Hmm, interesting, though I’m not quite sure how that will work with the point light but it seems like a good idea so I will give that a try to see how it pans out, thanks!
It’s a Material that is added onto a Point Light as a Light Function.
I am gonna then try making my cloud a bit transparent and have the light move to random points within the cloud. I think that part will use something similar to random coins in a bounds area probably but I just have no idea with the timer thing as it just kept blinking after several tries.
You could just a timer like I suggested and send a scalar parameter to the material. You could even interpolate it in order to have a control over the curve of the flash. Have several different / random flashes - longer, bigger, brighter.
Essentially a blueprint script that controls how often and how much the material lights up.
On the other hand, I don’t think the brightness works with light function like this. It does not override intensity. So you can still set it to 0-1 but crank up the point light Intensity instead. Or simply use light intensity only.
There’s definitely a way of doing it all in material but there’d be less overall control.
Hmm, not sure, I will go look at the unreal docs for that stuff to try to understand it further. I have been struggling to grasp and understand blueprinting/programming stuff. Thank you for the advice and I think I kinda understand a little bit what you mean. I will attempt it further.