Previous topicNext topic

Echo effect?

Questions, comments, feedback, etc.
Sadler
Posts: 1350
Joined: Sat Aug 02, 2014 7:10 pm
Location: London, UK

Re: Echo effect?

Post by Sadler »

way to successively delay iterations, which is a good idea and I will put it on my list.
I think artnik already suggested this a while back in the original Iterator feature request thread...

https://magicmusicvisuals.com/forums/se ... sf=msgonly

+1 from me
mgregory22
Posts: 11
Joined: Tue Dec 15, 2020 3:42 am

Re: Echo effect?

Post by mgregory22 »

Eric wrote:Anything is possible, but Magic's to-do list is many hundreds of lines long.
Yeah, I bet!
So you must be one of the developers of Magic? Did you also design it?
Yes. ;)
You did a great job! I feel like it's very intuitive. I'm very excited about this program! I've been looking for a program like this for years now.
Does Trails keep a bunch of copies of the screen in memory then?
No, only one copy: the current frame blended with the previous one. But if you want more of an echo or delay effect, then yes, you have to keep many previous frames, which is why it would be very inefficient.
There's got to be some trick! :)
I think what you really want is a way to successively delay iterations, which is a good idea and I will put it on my list.
I'm not sure what you mean by "successively". I don't know how Magic works, but I think if the Iterator were implemented with a for-loop, then I want to insert a sleep statement just before the end of the loop.

Thanks, though! You've given me plenty of stuff to play with in the meantime!
Magic
Site Admin
Posts: 3679
Joined: Wed Apr 09, 2014 9:28 pm

Re: Echo effect?

Post by Magic »

Successively means i*d, where i is the iteration #, and d is the delay. So, for some number of iterations, the first iteration would have no delay (d*0), then the second would have d*1 delay, then d*2, and so on. If d is .1 seconds, then the specific delays would be 0, .1, .2, .3... etc. Overall, it would result in exactly what you asked for in your first post, which I didn’t understand at the time ;).
mgregory22
Posts: 11
Joined: Tue Dec 15, 2020 3:42 am

Re: Echo effect?

Post by mgregory22 »

Haha sorry about that! I thought it was obvious and I thought for sure Magic could already do it and I was just missing it.

Yes, ok, the mathematical explanation makes more sense to me actually!
Post Reply