Unfortunately there's no great way to do a live Bokeh effect, but we can do a reasonable facsimile with a lot of other effects. Actually its pretty heavy process wise, but it should render out on most moderately fast modern machines. I expect there will be an effect that does the same eventually, but doing it like this does get you some good experience at hacking the editor to do what you want.
Continuous spray works nicely here.
Also take note that we use a Sprite to take advantage of its properties.
Basically we spawn the particles all over the layout, and let the Particle emitter take care of the movement, and speed.
Again note the timeout is super long.
This lets us randomize the effects easier.
The hamsters are getting a workout today.
Speaking of events:
+ System: On start of layout: -> Particles: Fast-forward 30 seconds
Use the fast forward again to avoid having to wait to populate the screen a bit. You will still see a fade in however.
+ System: Every 0.5 seconds
-> Sprite: Set effect "BlurHorizontal" parameter 0 to Sprite.Sine.Value
-> Sprite: Set effect "BlurVertical" parameter 0 to Sprite.Sine.Value
Use every n seconds to save a bit of processing.
You really don't need it to set it every tick.
You really don't need it to set it every tick.
+ Sprite: On created
-> Sprite: Set color to rgb(170, 146, 178)
-> Sprite: Set opacity to 0
-> Sprite: Fade: start fade
Like I said it looks weird to just have sprite pop in.
Find the source here
Comments
Post a Comment